select * 
     from employees
 order by hire_date desc
 limit 1  #代表取1行数据
offset 0   #从第几+1行开始取

limit 1 限制取几行

offset 0 从n+1行开始取即从第一行开始取