2
# Test that create with select works
6
DROP TABLE IF EXISTS t1;
7
DROP TABLE IF EXISTS t2;
11
id INT NOT NULL PRIMARY KEY
12
, padding VARCHAR(200) NOT NULL
15
INSERT INTO t1 VALUES (1, "I love testing.");
16
INSERT INTO t1 VALUES (2, "I hate testing.");
19
id INT NOT NULL PRIMARY KEY
20
, padding VARCHAR(200) NOT NULL