2001-09-27 23:05:54 -06:00
|
|
|
drop table if exists t1;
|
|
|
|
create table t1 (id int not null, str char(10), unique(str));
|
|
|
|
insert into t1 values (1, null),(2, null),(3, "foo"),(4, "bar");
|
|
|
|
select * from t1 where str is null;
|
2000-12-28 03:56:38 +02:00
|
|
|
id str
|
|
|
|
1 NULL
|
|
|
|
2 NULL
|
2001-09-27 23:05:54 -06:00
|
|
|
select * from t1 where str="foo";
|
2000-12-28 03:56:38 +02:00
|
|
|
id str
|
|
|
|
3 foo
|
2001-09-27 23:05:54 -06:00
|
|
|
explain select * from t1 where str is null;
|
2002-09-26 23:08:22 +03:00
|
|
|
id select_type table type possible_keys key key_len ref rows Extra
|
2002-11-21 15:56:48 +02:00
|
|
|
1 SIMPLE t1 ref str str 11 const 1 Using where
|
2001-09-27 23:05:54 -06:00
|
|
|
explain select * from t1 where str="foo";
|
2002-09-26 23:08:22 +03:00
|
|
|
id select_type table type possible_keys key key_len ref rows Extra
|
2002-10-03 18:47:04 +03:00
|
|
|
1 SIMPLE t1 const str str 11 const 1
|
2001-09-27 23:05:54 -06:00
|
|
|
explain select * from t1 ignore key (str) where str="foo";
|
2002-09-26 23:08:22 +03:00
|
|
|
id select_type table type possible_keys key key_len ref rows Extra
|
2002-11-21 15:56:48 +02:00
|
|
|
1 SIMPLE t1 ALL NULL NULL NULL NULL 4 Using where
|
2001-09-27 23:05:54 -06:00
|
|
|
explain select * from t1 use key (str,str) where str="foo";
|
2002-09-26 23:08:22 +03:00
|
|
|
id select_type table type possible_keys key key_len ref rows Extra
|
2002-10-03 18:47:04 +03:00
|
|
|
1 SIMPLE t1 const str str 11 const 1
|
2001-09-27 23:05:54 -06:00
|
|
|
explain select * from t1 use key (str,str,foo) where str="foo";
|
|
|
|
Key column 'foo' doesn't exist in table
|
|
|
|
explain select * from t1 ignore key (str,str,foo) where str="foo";
|
|
|
|
Key column 'foo' doesn't exist in table
|
|
|
|
drop table t1;
|
|
|
|
explain select 1;
|
2002-09-26 23:08:22 +03:00
|
|
|
id select_type table type possible_keys key key_len ref rows Extra
|
2002-12-14 17:43:01 +02:00
|
|
|
1 SIMPLE NULL NULL NULL NULL NULL NULL NULL No tables used
|