题解 | #查找最晚入职员工的所有信息#
查找最晚入职员工的所有信息
https://www.nowcoder.com/practice/218ae58dfdcd4af195fff264e062138f
select * from employees order by hire_date desc limit 1
其实是排序题
最晚入职,排序时间,选择一条记录
查找最晚入职员工的所有信息
https://www.nowcoder.com/practice/218ae58dfdcd4af195fff264e062138f
select * from employees order by hire_date desc limit 1
其实是排序题
最晚入职,排序时间,选择一条记录
相关推荐