牛客题霸 2. 查找入职员工时间排名倒数第三的员工所有信息
题目描述
解题思路
LIMIT m,n : 表示从第m+1条开始,取n条数据;
思路:使用子查询,按 hire_date 倒序排列,注意要使用 distinct 去重,然后用 limit 取出第三条数据。
select * from employees
where hire_date =
(select distinct hire_date from employees order by hire_date desc limit 2, 1);