zoukankan      html  css  js  c++  java
  • 取SQL分组中的某几行数据

    取SQL分组中的某几行数据

    对表中数据分组,有时只需要某列的聚合值;有时却需要返回整行数据,常用的方法有:子查询、ROW_NUMBER、APPLY,总体感觉还是ROW_NUMBER比较直观。
    测试数据:

    复制代码
    if OBJECT_ID('testGroup') is not null
    drop table testGroup
    GO
    create table testGroup
    (
    ID int identity primary key,
    UserID int,
    OrderID int
    ) 
    GO
    insert testGroup 
    select 1,10 union all
    select 1,20 union all
    select 1,30 union all
    select 2,100 union all
    select 2,200 union all
    select 3,1000 union all
    select 3,2000 union all
    select 3,3000 union all
    select 3,4000
    复制代码

    一. 取分组中第1行(最大/最小值)
    1. 取出分组中某列最大/最小值,不要求显示其他列
    最常见的分组聚合,用group by 分组时,只有参加分组/聚合的列才可以被显示。

    复制代码
    select UserID, MAX(OrderID) as MaxOrderID
    from testGroup 
    group by UserID
    复制代码

     2. 取出分组中某列最大/最小值,要求显示其他列

    要显示表中其他列,用group by 不好实现,可以借助子查询。

    复制代码
    select * from testGroup a 
    where ID = (select MAX(ID) from testGroup b where a.UserID = b.UserID)
    order by ID
    --或者
    select * from testGroup 
    where ID in (select MAX(ID) from testGroup group by UserID)
    --或者
    select * from testGroup as a 
    where a.ID in (select top 1 ID from testGroup b where a.UserID = b.UserID order by b.OrderID desc)
    --或者
    select * from testGroup a
    where not exists(select 1 from testGroup b where a.UserID = b.UserID and a.OrderID < b.OrderID)
    --或者
    select * from testGroup a
    where (select count(1) from testGroup b where a.UserID = b.UserID and a.id <= b.id) = 1
    复制代码

    二. 取分组中前N行(排名前几名)
    前N行为正向排序(ASC),后N行改为反向排序(DESC)即可,N=1时也就是取最大/最小值的行。下面以前2名(N=2)为例。
    1. SQL Server 2000的写法
    (1)子查询

    复制代码
    select * from testGroup as a
    where a.ID in (select top 2 ID from testGroup b where a.UserID = b.UserID order by b.OrderID)
    --或者
    select * from testGroup a
    where not exists (select 1 from testGroup b where a.UserID = b.UserID and a.OrderID > b.OrderID 
    having count(1) >= 2)
    --或者
    select * from testGroup a
    where (select count(1) from testGroup b where a.UserID = b.UserID and a.ID >= b.ID) <= 2
    --没有唯一标识的表,可以用checksum来标识每行
    select * from testGroup as a
    where checksum(*) in (select top 2 checksum(*) from testGroup b where a.UserID = b.UserID order by b.OrderID)
    复制代码

     2. SQL Server 2005新语法

    (2) ROW_NUMBER()

    复制代码
    select ID, UserID, OrderID
    from 
    (select *, ROW_NUMBER() over(partition by UserID order by OrderID) num
    from testGroup ) t
    where t.num between 1 and 2
    复制代码

     (3) APPLY(TOP)

    复制代码
    select distinct t.* from testGroup a
    cross apply (select top 2 ID, UserID, OrderID from testGroup b
    where a.UserID = b.UserID order by b.OrderID) as t
    复制代码

    三. 取分组中第N行(排名第N名)
    把上面的查询中,范围值都改为固定值,就可以取具体某一行了,下面以第3名(N=3)为例。
    (1) 子查询

    复制代码
    select * from testGroup a
    where (select count(1) from testGroup b where a.UserID = b.UserID and a.OrderID >= b.OrderID) = 3
    --或者
    select * from testGroup a
    where exists (select 1 from testGroup b where a.UserID = b.UserID and a.OrderID >= b.OrderID 
    having count(1) = 3)
    复制代码

     (2) ROW_NUMBER()

    复制代码
    select ID, UserID, OrderID
    from 
    (select *, ROW_NUMBER() over(partition by UserID order by OrderID) num
    from testGroup ) t
    where t.num = 3
    复制代码
     
     
  • 相关阅读:
    android 解密工具
    android打包需要的图标
    Mac 创建软链接
    历届试题 Excel地址
    算法训练 字串统计
    最长回文子串
    算法提高 P1001【大数乘法】
    算法提高 拿糖果【埃氏筛 动态规划】
    算法训练 未名湖边的烦恼
    算法提高 合并石子【动态规划】
  • 原文地址:https://www.cnblogs.com/Leo_wl/p/3259174.html
Copyright © 2011-2022 走看看