题解 | 给出employees表中排名为奇数行的first_name

给出employees表中排名为奇数行的first_name

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

select first 
from (select first_name as first, 
rank() over( order by first_name) as r1 
from employees order by emp_no) as p1
where not mod(r1,2)=0;

全部评论

相关推荐

评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务