DROP TABLE IF EXISTS t1; CREATE TABLE t1 (n INT); INSERT INTO t1 VALUES (1), (2), (3); SELECT * FROM t1; n 1 2 3 drop table t1;