mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-11 01:54:55 +00:00
14 lines
362 B
MySQL
14 lines
362 B
MySQL
|
select startsWith([], []);
|
||
|
select startsWith([1], []);
|
||
|
select startsWith([], [1]);
|
||
|
|
||
|
select startsWith([NULL], [NULL]);
|
||
|
select startsWith([NULL], []);
|
||
|
select startsWith([], [NULL]);
|
||
|
|
||
|
select startsWith([1, 2, 3, 4], [1, 2, 3]);
|
||
|
select startsWith([1, 2, 3, 4], [1, 2, 4]);
|
||
|
|
||
|
select startsWith(['a', 'b', 'c'], ['a', 'b']);
|
||
|
select startsWith(['a', 'b', 'c'], ['b']);
|