spl与sql对比-九游会登陆
每个部门出两名员工
sql解法
select * from (select 员工表.*, row_number() over(partition by 部门 order by 1) 序号 from 员工表) where 序号<=2
sql处理从分组子集中再选出的任务需要使用子查询从源集合中再次查询。
select * from (select 员工表.*, row_number() over(partition by 部门 order by 1) 序号 from 员工表) where 序号<=2
sql处理从分组子集中再选出的任务需要使用子查询从源集合中再次查询。