qfedu-linux-advanced-level/day9/search_students.sql

6 lines
156 B
MySQL
Raw Permalink Normal View History

2023-08-24 17:18:04 +08:00
-- 查询测试
-- select * from t_stu where name like '刘';
select * from t_stu where name like '刘%';
select * from t_stu where birthday like '1991%';