ClickHouse/tests/integration/test_postgresql_protocol/queries/query4.sql

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

1 line
136 B
MySQL
Raw Normal View History

2023-01-03 19:30:14 +00:00
CREATE TEMPORARY TABLE tmp (tmp_column UInt32); INSERT INTO tmp VALUES (0), (1); SELECT * FROM tmp ORDER BY tmp_column; DROP TABLE tmp;