问题

image.png

思路

先获取所有最晚的 hire_date,然后把与其相等的记录取出来,这个可以取多条

  1. SELECT * FROM employees WHERE hire_date = (SELECT MAX(hire_date) FROM employees);