mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 21:51:57 +00:00
5 lines
297 B
SQL
5 lines
297 B
SQL
select [(toUInt8(3), toUInt8(3))] = [(toInt16(3), toInt16(3))];
|
|
select hasAny([(toInt16(3), toInt16(3))],[(toInt16(3), toInt16(3))]);
|
|
select arrayFilter(x -> x = (toInt16(3), toInt16(3)), arrayZip([toUInt8(3)], [toUInt8(3)]));
|
|
select hasAny([(toUInt8(3), toUInt8(3))],[(toInt16(3), toInt16(3))]);
|