ClickHouse/tests/queries/0_stateless/00544_insert_with_select.sql

10 lines
218 B
MySQL
Raw Normal View History

DROP TABLE IF EXISTS test;
CREATE TABLE test(number UInt64, num2 UInt64) ENGINE = Log;
INSERT INTO test WITH number * 2 AS num2 SELECT number, num2 FROM system.numbers LIMIT 3;
SELECT * FROM test;
DROP TABLE test;