题解 | #商品交易(网易校招笔试真题)#

对于employees表中,给出奇数行的first_name

http://www.nowcoder.com/practice/e3cf1171f6cc426bac85fd4ffa786594

第一步 求姓名排序为奇数的姓名
第二步连接表 
第三步 按照第一步的排序为筛选条件  完事

select e.first_name
from employees as e
join (
        select  first_name,ROW_NUMBER() over(order by first_name) as t_rank
        from employees
      ) as t
on e.first_name=t.first_name
where t.t_rank%2=1

全部评论

相关推荐

有工作后先养猫:太好了,是超时空战警,我们有救了😋
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务