1
DROP TABLE IF EXISTS t1;
16
select 50, 'abc';'abcd'
36
create table t1 (i int);
37
insert into t1 values (1);
38
select * from t1 where i = 1;
39
insert into t1 values (2),(3),(4);
40
select * from t1 where i = 2;
41
select * from t1 where i = 3||||
48
show status like 'Slow_queries'||||