1
1
drop table if exists foo;
3
3
Note 1051 Unknown table 'foo'
5
5
a int not null auto_increment,
10
10
insert into foo( b ) values (1),(1),(1),(1),(1);
18
27
explain select * from foo where a in (160000, 160001, 160002);
19
28
id select_type table type possible_keys key key_len ref rows Extra