27
alter table t1 add c int DEFAULT 42 not null, add key using BTREE (c,a);
27
alter table t1 add c int not null, add key using BTREE (c,a);
29
29
create temporary table t1 (a int not null,b int not null, primary key using BTREE (a)) engine=MEMORY comment="testing heaps";
30
30
insert into t1 values(-2,-2),(-1,-1),(0,0),(1,1),(2,2),(3,3),(4,4);
79
79
insert into t1 values (1,1),(2,2),(1,3),(2,4),(2,5),(2,6);
80
80
explain select * from t1 where x=1;
81
81
id select_type table type possible_keys key key_len ref rows Extra
82
1 SIMPLE t1 ALL x NULL NULL NULL 6 Using where
82
1 SIMPLE t1 ref x x 4 const 1
83
83
select * from t1 where x=1;
109
109
select * from t1 where a=1;
123
123
explain select * from tx where a=x order by a,b;
124
124
id select_type table type possible_keys key key_len ref rows Extra
125
x SIMPLE tx ALL a NULL NULL NULL x Using where; Using filesort
125
x SIMPLE tx ref a a x const x Using where
126
126
explain select * from tx where a=x order by b;
127
127
id select_type table type possible_keys key key_len ref rows Extra
128
x SIMPLE tx ALL a NULL NULL NULL x Using where; Using filesort
128
x SIMPLE tx ref a a x const x Using where
129
129
select * from t1 where b=1;
173
173
insert into t1 values ("hello"),("hello"),("hello"),("hello"),("hello"),("a"),("b"),("c"),("d"),("e"),("f"),("g"),("h"),("i");
174
174
explain select * from t1 where btn like "i%";
175
175
id select_type table type possible_keys key key_len ref rows Extra
176
1 SIMPLE t1 ALL btn NULL NULL NULL 14 Using where
176
1 SIMPLE t1 range btn btn 42 NULL 1 Using where
177
177
explain select * from t1 where btn like "h%";
178
178
id select_type table type possible_keys key key_len ref rows Extra
179
1 SIMPLE t1 ALL btn NULL NULL NULL # Using where
179
1 SIMPLE t1 range btn btn 42 NULL # Using where
180
180
explain select * from t1 where btn like "a%";
181
181
id select_type table type possible_keys key key_len ref rows Extra
182
1 SIMPLE t1 ALL btn NULL NULL NULL 14 Using where
182
1 SIMPLE t1 range btn btn 42 NULL 1 Using where
183
183
explain select * from t1 where btn like "b%";
184
184
id select_type table type possible_keys key key_len ref rows Extra
185
1 SIMPLE t1 ALL btn NULL NULL NULL 14 Using where
185
1 SIMPLE t1 range btn btn 42 NULL 1 Using where
186
186
select * from t1 where btn like "ff%";
188
188
select * from t1 where btn like " %";
190
190
select * from t1 where btn like "q%";
192
alter table t1 add column new_col char(1) DEFAULT "Y" not null, add key using BTREE (btn,new_col), drop key btn;
192
alter table t1 add column new_col char(1) not null, add key using BTREE (btn,new_col), drop key btn;
193
193
update t1 set new_col=left(btn,1);
194
194
explain select * from t1 where btn="a";
195
195
id select_type table type possible_keys key key_len ref rows Extra
196
1 SIMPLE t1 ALL btn NULL NULL NULL 14 Using where
196
1 SIMPLE t1 ref btn btn 42 const 1 Using where
197
197
explain select * from t1 where btn="a" and new_col="a";
198
198
id select_type table type possible_keys key key_len ref rows Extra
199
1 SIMPLE t1 ref btn btn 48 const,const 2 Using where
199
1 SIMPLE t1 ref btn btn 48 const,const 1 Using where
201
201
CREATE TEMPORARY TABLE t1 (
202
202
a int default NULL,
315
315
insert into t1 values (1, 1), (3, 3), (2, 2), (NULL, 1), (NULL, NULL), (0, 0);
316
316
select * from t1 where a is null;