blob: d160b04176c739732d11f033030d9ec5fbc84cf4 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#
# Test of like
#
create table t1 (a varchar(10), key(a));
insert into t1 values ("a"),("abc"),("abcd"),("hello"),("test");
select * from t1 where a like "abc%";
select * from t1 where a like "test%";
select * from t1 where a like "te_t";
drop table t1;
|