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

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

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

with tmp as( 
    select *, row_number() over(order by first_name asc)  as r from employees
)
select e.first_name from employees e inner join tmp t on e.first_name = t.first_name where t.r % 2 = 1

IF就是WHERE, SQL 的where相当于C++ PY JAVA的IF,

全部评论

相关推荐

点赞 评论 收藏
分享
WhiteAlbum...:学院本2中大厂垂直实习➕acm比赛 秋招0面试
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

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