题解 | #对于employees表中,给出奇数行的first_name#
对于employees表中,给出奇数行的first_name
http://www.nowcoder.com/practice/e3cf1171f6cc426bac85fd4ffa786594
select e.first_name from employees e join (select first_name,row_number()over(order by first_name) as rank2 from employees) t on e.first_name=t.first_name where t.rank2 %2=1 # 判断奇偶数和python一样 %表示取余数
利用窗口函数排名后,输出结果会按照over()中的order by 的操作进行排序。但不清楚里面有多个字段时会不会按多个字段排序,最好还是在语句结尾根据自己想要排序的字段加一个order by。
而这里不需要对结果进行排序,因此可以考虑将排名与原表再进行连接。