2 drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
5 drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
7 CREATE TABLE t1 (word CHAR(20) NOT NULL);
8 LOAD DATA INFILE '../../std_data/words.dat' INTO TABLE t1;
9 SELECT * FROM t1 ORDER BY word;
81 SELECT * FROM t1 ORDER BY word;