mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 15:21:43 +00:00
10 lines
337 B
MySQL
10 lines
337 B
MySQL
|
select toTypeName(rand(cast(4 as Nullable(UInt8))));
|
||
|
select toTypeName(randConstant(CAST(4 as Nullable(UInt8))));
|
||
|
select toTypeName(rand(Null));
|
||
|
select toTypeName(randConstant(Null));
|
||
|
|
||
|
select rand(cast(4 as Nullable(UInt8))) * 0;
|
||
|
select randConstant(CAST(4 as Nullable(UInt8))) * 0;
|
||
|
select rand(Null) * 0;
|
||
|
select randConstant(Null) * 0;
|