mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 23:31:24 +00:00
4 lines
184 B
MySQL
4 lines
184 B
MySQL
|
SELECT has([(1, 2), (3, 4)], (toUInt16(3), 4));
|
||
|
SELECT hasAny([(1, 2), (3, 4)], [(toUInt16(3), 4)]);
|
||
|
SELECT hasAll([(1, 2), (3, 4)], [(toNullable(1), toUInt64(2)), (toUInt16(3), 4)]);
|