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