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

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

1 line
216 B
MySQL
Raw Normal View History

2023-01-03 19:30:14 +00:00
CREATE DATABASE x; USE x; CREATE TABLE table1 (column UInt32) ENGINE = Memory; INSERT INTO table1 VALUES (0), (1), (5); INSERT INTO table1 VALUES (0), (1), (5); SELECT * FROM table1 ORDER BY column; DROP DATABASE x;