select t.emp_no,t.birth_date,t.first_name,t.last_name,t.gender,t.hire_date from employees t where t.hire_date=(select max(hire_date) from employees order by hire_date desc);先通过排序获取最大的入职员工时间然后作为查询语句的条件,就可以了。