CREATE FUNCTION
Creates a user defined function from a lambda expression. The expression must consist of function parameters, constants, operators, or other function calls.
Syntax
CREATE FUNCTION name AS (parameter0, ...) -> expression
A function can have an arbitrary number of parameters.
There are a few restrictions:
- The name of a function must be unique among user defined and system functions.
- Recursive functions are not allowed.
- All variables used by a function must be specified in its parameter list.
If any restriction is violated then an exception is raised.
Example
Query:
CREATE FUNCTION linear_equation AS (x, k, b) -> k*x + b;
SELECT number, linear_equation(number, 2, 1) FROM numbers(3);
Result:
ββnumberββ¬βplus(multiply(2, number), 1)ββ
β 0 β 1 β
β 1 β 3 β
β 2 β 5 β
ββββββββββ΄βββββββββββββββββββββββββββββββ
A conditional function is called in a user defined function in the following query:
CREATE FUNCTION parity_str AS (n) -> if(n % 2, 'odd', 'even');
SELECT number, parity_str(number) FROM numbers(3);
Result:
ββnumberββ¬βif(modulo(number, 2), 'odd', 'even')ββ
β 0 β even β
β 1 β odd β
β 2 β even β
ββββββββββ΄βββββββββββββββββββββββββββββββββββββββ