mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-18 20:32:43 +00:00
5 lines
103 B
SQL
5 lines
103 B
SQL
set enable_dynamic_type = 1;
|
|
|
|
select ifNull(number % 2 ? NULL : number::Dynamic, 42) from numbers(5);
|
|
|