sql – 选择group by子句中的前n行

前端之家收集整理的这篇文章主要介绍了sql – 选择group by子句中的前n行前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有类似于以下的模式:
create table bar
(
    instrument varchar(255) not null,bar_dttm datetime not null,bar_open int not null,bar_close int not null
)

我想查询表,并返回最近的5行每个乐器.

我可以通过仪器做到这一点:

select top 5 instrument,bar_dttm,bar_open,bar_close
from bar
where instrument = 'XXX'
order by bar_dttm desc

我想在一个查询中一次性对所有仪器做到这一点.这可能吗?我正在运行sql Server 2008.

解决方法

交叉应用是你通常这样做 – http://msdn.microsoft.com/en-us/library/ms175156.aspx

编辑 – 添加例子,像这样:

select
    bar1.instrument,bar2.*
from (
    select distinct instrument from bar) as bar1
cross apply (
    select top 5
        bar2.instrument,bar2.bar_dttm,bar2.bar_open,bar2.bar_close 
    from bar as bar2 where bar2.instrument = bar1.instrument) as bar2

通常你想在那里添加一个订单.

编辑 – 添加查询中有所区别,希望能给您想要的.编辑 – 在顶部添加缺少“选择”关键字.复制&粘贴错误FTL!

原文链接:https://www.f2er.com/mssql/75539.html

猜你在找的MsSQL相关文章