ClickHouse/dbms/tests/queries/0_stateless/00526_array_join_with_arrays_of_nullable.sql
2017-12-08 12:45:07 +03:00

2 lines
140 B
SQL

SELECT x, y, arrayJoin(['a', NULL, 'b']) AS z FROM system.one ARRAY JOIN [1, NULL, 3] AS x, [(NULL, ''), (123, 'Hello'), (456, NULL)] AS y;