题解 | #SQL21 对于employees表中,给出奇数行的first_name#
对于employees表中,给出奇数行的first_name
http://www.nowcoder.com/practice/e3cf1171f6cc426bac85fd4ffa786594
select first_name from (select first_name, count(emp_no) over(order by first_name) cnt from employees order by emp_no) t where cnt % 2 =1
二刷的时候,突然自己就做出来了,还挺郁闷为啥之前的笔记上专门写了‘难’的备注 哈哈哈
勇敢牛牛! 冲冲冲!