当前位置:   article > 正文

sql语句获取分批排名数据_sqlserver 分批排名

sqlserver 分批排名

场景:假设一个表有多家公司,每家公司属于一个分组,每家公司有主键,分组,名称,营业额等数据

问题:用一个sql获取每个分组营业额前10名的公司

思路:按分组模拟生成每个分组按金额排序的行号,取行号前10的数据

假设公司表定义:
company(id:主键ID, name:名称, type:分组, amt:金额)

  1. select d.line, d.id, d.name, d.type, d.amt from (
  2. select (
  3. case when
  4. (select count(*) from company a where a.type = c.type and a.amt = c.amt) > 1
  5. then
  6. (select count(*) from company a where a.type = c.type and a.amt > c.amt)
  7. +
  8. (select count(*) from company a where a.type = c.type and a.amt = c.amt and a.id <= c.id)
  9. else
  10. (select count(*) from company a where a.type = c.type and a.amt >= c.amt) end) line, name, type, amt
  11. from company c
  12. ) d
  13. where d.line <= 10
  14. order by d.type, d.amt desc
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/知新_RL/article/detail/97336
推荐阅读
相关标签
  

闽ICP备14008679号