牛客SQL2--查找入职员工时间排名倒数第三的员工所有信息

MYSQL:

select * from employees order by hire_date desc LIMIT 2,1;
原文地址:https://www.cnblogs.com/asenyang/p/15396067.html