select * from employees where hire_date in (
    select hire_date from employees order by hire_date desc limit 1 offset 2  
)