mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 13:42:02 +00:00
5 lines
132 B
SQL
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;
|