ClickHouse/tests/queries/0_stateless/01855_create_simple_function.sql
2021-07-03 23:17:02 +03:00

5 lines
132 B
SQL

create function MyFunc as (a, b, c) -> a * b * c;
select MyFunc(2, 3, 4);
select isConstant(MyFunc(1, 2, 3));
drop function MyFunc;