23
23
select * from t1 order by text1;
24
24
explain select * from t1 order by text1;
28
28
select * from t1 ignore key (key1) where text1='teststring' or
29
29
text1 like 'teststring_%' ORDER BY text1;
30
30
select concat('|', text1, '|') from t1 where text1='teststring' or text1 like 'teststring_%';
31
31
select concat('|', text1, '|') from t1 where text1='teststring' or text1 > 'teststring\t';
32
32
select text1, length(text1) from t1 order by text1;
35
35
alter table t1 modify text1 blob not null, drop key key1, add key key1 (text1(20));
36
36
insert into t1 values ('teststring ');