2001-09-27 23:05:54 -06:00
|
|
|
drop table if exists t1;
|
|
|
|
CREATE TABLE t1 (id CHAR(12) not null, PRIMARY KEY (id));
|
|
|
|
insert into t1 values ('000000000001'),('000000000002');
|
|
|
|
explain select * from t1 where id=000000000001;
|
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 index PRIMARY PRIMARY 12 NULL 2 Using where; Using index
|
2001-09-27 23:05:54 -06:00
|
|
|
select * from t1 where id=000000000001;
|
2000-12-28 03:56:38 +02:00
|
|
|
id
|
|
|
|
000000000001
|
2001-09-27 23:05:54 -06:00
|
|
|
delete from t1 where id=000000000002;
|
|
|
|
select * from t1;
|
2000-12-28 03:56:38 +02:00
|
|
|
id
|
|
|
|
000000000001
|
2001-09-27 23:05:54 -06:00
|
|
|
drop table t1;
|