查找最晚入职的日期,SELECT MAX(hire_date) FROM employees;然后查找该日期为条件的suoy语句SELECT * FROM employees WHERE hire_date=(SELECT MAX(hire_date) FROM employees) ;