mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 15:21:43 +00:00
15 lines
589 B
SQL
15 lines
589 B
SQL
DROP TABLE IF EXISTS insert_fewer_columns;
|
|
CREATE TABLE insert_fewer_columns (a UInt8, b UInt8) ENGINE = Memory;
|
|
INSERT INTO insert_fewer_columns (a) VALUES (1), (2);
|
|
SELECT * FROM insert_fewer_columns;
|
|
|
|
-- Test position arguments in insert.
|
|
DROP TABLE IF EXISTS insert_fewer_columns_2;
|
|
CREATE TABLE insert_fewer_columns_2 (b UInt8, a UInt8) ENGINE = Memory;
|
|
INSERT INTO insert_fewer_columns_2 SELECT * FROM insert_fewer_columns;
|
|
SELECT a, b FROM insert_fewer_columns;
|
|
SELECT a, b FROM insert_fewer_columns_2;
|
|
|
|
DROP TABLE IF EXISTS insert_fewer_columns_2;
|
|
DROP TABLE insert_fewer_columns;
|