SELECT * from employees order by hire_date desc LIMIT 1

题目还是比较简单,对字段hire_date进行降序排序,然后利用MySQL特有的limit取第一条,就得到了最晚入职的员工所有信息。