ClickHouse/tests/queries/0_stateless/00689_join_table_function.sql

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

2 lines
102 B
MySQL
Raw Normal View History

2022-06-07 13:59:30 +00:00
SELECT * FROM numbers(3) AS a ANY LEFT JOIN numbers(3) AS b ON a.number = b.number ORDER BY a.number;