ClickHouse/dbms/tests/queries/0_stateless/00102_insert_into_temporary_table.sql

4 lines
79 B
MySQL
Raw Normal View History

CREATE TEMPORARY TABLE t (a UInt8);
INSERT INTO t VALUES (1);
SELECT * FROM t;