mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-17 20:02:05 +00:00
3 lines
211 B
SQL
3 lines
211 B
SQL
SELECT CAST('a', 'Nullable(FixedString(1))') as s, toTypeName(s), toString(s);
|
|
SELECT toTypeName(s), toString(s) FROM (SELECT if(number % 3 = 0, NULL, toFixedString(toString(number), 1)) AS s from numbers(10))
|