ClickHouse/tests/integration/test_postgresql_protocol/queries/query4.sql
2023-01-03 19:30:14 +00:00

1 line
136 B
SQL

CREATE TEMPORARY TABLE tmp (tmp_column UInt32); INSERT INTO tmp VALUES (0), (1); SELECT * FROM tmp ORDER BY tmp_column; DROP TABLE tmp;