ClickHouse/tests/queries/0_stateless/01812_has_generic.sql

4 lines
184 B
MySQL
Raw Normal View History

2021-04-13 17:10:27 +00:00
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)]);