ClickHouse/tests/queries/0_stateless/00526_array_join_with_arrays_of_nullable.sql

2 lines
140 B
MySQL
Raw Normal View History

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;