ClickHouse/tests/queries/0_stateless/01015_random_constant.sql

4 lines
116 B
MySQL
Raw Normal View History

2019-10-04 09:22:07 +00:00
select randConstant() >= 0;
select randConstant() % 10 < 10;
select uniqExact(x) from (select randConstant() as x);