spl与sql对比-九游会登陆
全公司年龄排名居中的员工
sql解法
select 姓名,出生日期 from (select 姓名,出生日期, row_number() over (order by 出生日期) 排名 from 员工表 ) where 排名=(select floor((count(*) 1)/2) from 员工表)
sql的集合无序,需要专门制造出序号再用条件查询才能完成获得确定位置成员的计算。
select 姓名,出生日期 from (select 姓名,出生日期, row_number() over (order by 出生日期) 排名 from 员工表 ) where 排名=(select floor((count(*) 1)/2) from 员工表)
sql的集合无序,需要专门制造出序号再用条件查询才能完成获得确定位置成员的计算。