SELECT * from employees 
order by hire_date DESC
LIMIT 2,1

---limit表示从第三行取一条数据
---order by +列名+desc/asc