以hire_date倒序排列,用limit限制第二个之后的第一个,也就是第三个,然后select all

select * from employees
order by hire_date desc limit 2,1