ClickHouse/tests/queries/0_stateless/01240_join_get_or_null.sql

8 lines
181 B
MySQL
Raw Normal View History

2020-04-07 14:52:32 +00:00
DROP TABLE IF EXISTS join_test;
CREATE TABLE join_test (id UInt16, num UInt16) engine = Join(ANY, LEFT, id);
SELECT joinGetOrNull('join_test', 'num', 500);
DROP TABLE join_test;