select emp_no ,birth_date ,first_name ,last_name ,gender ,hire_date from( select * ,rank()over(order by hire_date desc) as ra from employees) as AA where ra=1 首先,大佬们,我知道这题涉及子查询是有点繁琐了!勿喷!!!在做题的过程中我产生了一个疑问,我本来想改进一下代码,直接就剔除掉子查询中ra这一列排名,我上网搜了一下可以用 select *, -字段名 来剔除某一具体列,所以就尝试了一下。结果呢,发现如果对数据库中的表进行...