6 lines
156 B
MySQL
6 lines
156 B
MySQL
|
-- 查询测试
|
||
|
-- select * from t_stu where name like '刘';
|
||
|
select * from t_stu where name like '刘%';
|
||
|
|
||
|
select * from t_stu where birthday like '1991%';
|