mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 23:31:24 +00:00
5 lines
133 B
MySQL
5 lines
133 B
MySQL
|
select count() from
|
||
|
(
|
||
|
select toInt128(number) * number x, toInt256(number) * number y from numbers_mt(100000000) where x != y
|
||
|
);
|