User-defined functions
Overview
Syntax
Create a Function
CREATE FUNCTION function_name(arg1_type, arg2_type, ...)
RETURNS return_type
LANGUAGE JAVASCRIPT
AS 'function function_name(arg1, arg2, ...) { ... }';Drop a Function
DROP FUNCTION function_name(arg1_type, arg2_type, ...);Example
1. Define a UDF
2. Use the UDF
Notes and Limitations
Usage Scenarios
Last updated

