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