select * from employees
where hire_date = (
SELECT DISTINCT hire_date
from employees
ORDER BY hire_date
LIMIT 2, 1
)
查找入职时间倒数第三的员工信息
最新推荐文章于 2024-07-18 07:02:15 发布
select * from employees
where hire_date = (
SELECT DISTINCT hire_date
from employees
ORDER BY hire_date
LIMIT 2, 1
)