select * from employees order by hire_date desc limit 3从这筛选出前三条知道
需要第三条,所以limit(indx,count),index从哪里开始,count取多少条
答案:select * from employees order by hire_date desc limit 2,1