mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 15:21:43 +00:00
6 lines
240 B
SQL
6 lines
240 B
SQL
DROP TABLE IF EXISTS ttt01778;
|
|
CREATE TABLE ttt01778 (`1` String, `2` INT) ENGINE = MergeTree() ORDER BY tuple();
|
|
INSERT INTO ttt01778 values('1',1),('2',2),('3',3);
|
|
select * from ttt01778 where 1=2; -- no server error
|
|
DROP TABLE ttt01778;
|