我想实现查询指定分类的不同时间不同价格的前5条记录。String    cListView=new String("select top 5 unitprice from "+enttable+" where  nclassid=? group by unitprice order by unitprice desc");运行结果:能读出价格不一样的前5条记录。
String    cListView=new String("select top 5 unitprice,opertiontime from "+enttable+" where  nclassid=? group by unitprice,opertiontime order by unitprice desc");
运行结果:读出了价格一样却时间不一样的前5条记录。group by 的方式是 先按unitprice,如果有相同的数据,再按opertiontime来排可否有简单的方案啊?
 
 

解决方案 »

  1.   

    ---------------------------------
    --  Author: liangCK 小梁
    --  Title : 查每个分组前N条记录
    --  Date  : 2008-11-13 17:19:23
    -----------------------------------> 生成测试数据: #T
    IF OBJECT_ID('tempdb.dbo.#T') IS NOT NULL DROP TABLE #T
    CREATE TABLE #T (ID VARCHAR(3),GID INT,Author VARCHAR(29),Title VARCHAR(39),Date DATETIME)
    INSERT INTO #T
    SELECT '001',1,'邹建','深入浅出SQLServer2005开发管理与应用实例','2008-05-10' UNION ALL
    SELECT '002',1,'胡百敬','SQLServer2005性能调校','2008-03-22' UNION ALL
    SELECT '003',1,'格罗夫Groff.J.R.','SQL完全手册','2009-07-01' UNION ALL
    SELECT '004',1,'KalenDelaney','SQLServer2005技术内幕存储引擎','2008-08-01' UNION ALL
    SELECT '005',2,'Alex.Kriegel.Boris.M.Trukhnov','SQL宝典','2007-10-05' UNION ALL
    SELECT '006',2,'飞思科技产品研发中心','SQLServer2000高级管理与开发','2007-09-10' UNION ALL
    SELECT '007',2,'胡百敬','SQLServer2005数据库开发详解','2008-06-15' UNION ALL
    SELECT '008',3,'陈浩奎','SQLServer2000存储过程与XML编程','2005-09-01' UNION ALL
    SELECT '009',3,'赵松涛','SQLServer2005系统管理实录','2008-10-01' UNION ALL
    SELECT '010',3,'黄占涛','SQL技术手册','2006-01-01'--SQL查询如下:--按GID分组,查每个分组中Date最新的前2条记录
    --1.字段ID唯一时:
    SELECT * FROM #T AS T WHERE ID IN(SELECT TOP 2 ID FROM #T WHERE GID=T.GID ORDER BY Date DESC)--2.如果ID不唯一时:
    SELECT * FROM #T AS T WHERE 2>(SELECT COUNT(*) FROM #T WHERE GID=T.GID AND Date>T.Date)--SQL Server 2005 使用新方法--3.使用ROW_NUMBER()进行排位分组
    SELECT ID,GID,Author,Title,Date
    FROM
    (
       SELECT rid=ROW_NUMBER() OVER(PARTITION BY GID ORDER BY Date DESC),*
       FROM #T
    ) AS T
    WHERE rid<=2--4.使用APPLY
    SELECT DISTINCT b.*
    FROM #T AS a
    CROSS APPLY
    (
        SELECT TOP(2) * FROM #T WHERE a.GID=GID ORDER BY Date DESC
    ) AS b
    --结果
    /*ID   GID         Author                        Title                                   Date
    ---- ----------- ----------------------------- --------------------------------------- -----------------------
    003  1           格罗夫Groff.J.R.                 SQL完全手册                                 2009-07-01 00:00:00.000
    004  1           KalenDelaney                  SQLServer2005技术内幕存储引擎                   2008-08-01 00:00:00.000
    005  2           Alex.Kriegel.Boris.M.Trukhnov SQL宝典                                   2007-10-05 00:00:00.000
    007  2           胡百敬                           SQLServer2005数据库开发详解                    2008-06-15 00:00:00.000
    009  3           赵松涛                           SQLServer2005系统管理实录                     2008-10-01 00:00:00.000
    010  3           黄占涛                           SQL技术手册                                 2006-01-01 00:00:00.000(6 行受影响)
    */
      

  2.   

    建议你列出你的表结构,并提供测试数据以及基于这些测试数据的所对应正确结果。问题说明越详细,回答也会越准确!参见如何提问。(提问的智慧
    当您的问题得到解答后请及时结贴.
    http://topic.csdn.net/u/20090501/15/7548d251-aec2-4975-a9bf-ca09a5551ba5.html
      

  3.   

    数据源:
    goodsid 自动编号
    nclassid   数字:长整型
    unitprice  数字:双精度型
    opertiontime  日期/时间:常规日期我想实现查询指定分类的不同时间不同价格的前5条记录。 String    cListView=new String("select top 5 unitprice from "+enttable+" where  nclassid=? group by unitprice order by unitprice desc"); 运行结果:能读出价格不一样的前5条记录。 
    String    cListView=new String("select top 5 unitprice,opertiontime from "+enttable+" where  nclassid=? group by unitprice,opertiontime order by unitprice desc"); 
    运行结果:读出了价格一样却时间不一样的前5条记录。 
      

  4.   

    select top 3 * from t_reyoreyoreyo t
    where not exists (
    select 1 from t_reyoreyoreyo 
    where O_Id<t.O_Id 
    and (opertiontime=t.opertiontime 
    or unitprice=t.unitprice
    )
    )
      

  5.   

    select top 3 * from t_reyoreyoreyo t
    where nclassid='Bush'
    and not exists (
        select 1 from t_reyoreyoreyo 
        where nclassid='Bush'
        and O_Id<t.O_Id 
        and (opertiontime=t.opertiontime 
            or unitprice=t.unitprice
            )
        )