mirror of
https://github.com/MariaDB/server.git
synced 2025-05-02 19:25:03 +03:00
11 lines
259 B
Plaintext
11 lines
259 B
Plaintext
#
|
|
# 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;
|