1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
# sel000002 # # Versions # -------- # 3.22 # 3.23 # # Description # ----------- # This test is just a simple select. # DROP TABLE IF EXISTS t1; CREATE TABLE t1 (n INT); INSERT INTO t1 VALUES (1), (2), (3); SELECT * FROM t1; drop table t1;