mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 04:22:27 +01:00
20 lines
500 B
Text
20 lines
500 B
Text
#
|
|
# Test of like
|
|
#
|
|
|
|
drop table if exists t1;
|
|
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 "ABC%";
|
|
select * from t1 where a like "test%";
|
|
select * from t1 where a like "te_t";
|
|
|
|
#
|
|
# The following will test the Turbo Boyer-Moore code
|
|
#
|
|
select * from t1 where a like "%a%";
|
|
select * from t1 where a like "%abcd%";
|
|
select * from t1 where a like "%abc\d%";
|
|
|
|
drop table t1;
|