Create, insert and drop a table
CREATE TABLE t1 ( c1 INT ); INSERT INTO t1 VALUES (12); SELECT * FROM t1; DROP TABLE t1;