qfedu-linux-advanced-level/day9/DQL/search10.sql

7 lines
125 B
MySQL
Raw Permalink Normal View History

use studb;
-- 查询2022年入职的所有员工
select *
from t_emp
where hire_date between '2022-01-01' and '2022-12-31';