查询一条记录
查找最晚入职员工的所有信息
http://www.nowcoder.com/questionTerminal/218ae58dfdcd4af195fff264e062138f
第一种:采用内置函数方法的形式(max)
select * from employees where hire_date=(select Max(hire_date) from employees);
第二种:采用降序的形式+limit实现
select * from employees
order by hire_date desc
limit 0,1;