select * from employees where hire_date = ( select max(hire_date) from employees) 查找最晚入职员工的所有信息,所以限制条件是员工入职时间要求是最晚的。首先写出框架select * from employees where,然后再看条件,要求入职时间最晚,那么就让hire——date等最晚的那个,然后用子查询再次在表中对最晚的时间进行查询,然后交给上面的hire_date就行。