如果是SqlServer 2005 的话可以这样写
select * from (
select id,name,sal,
rank() over( PARTITION BY month order by sal) as [分组排名]
from 表名)a where 分组排名 <6
人家要的是每月的前五
--------------------------------------------------
declare @ysj_month varchar(max)
declare ysj_cursor Cursor For
select distinct month from table
open ysj_cursor
while @@fetch_status =0
begin
fetch next from ysj_cursor into @ysj_month
select top 5 * from table where month = @ysj_month order by money desc
end;
CLOSE ysj_cursor
----------------------------------
declare @月份 smallint
declare @月份max smallint
set @月份=1
set @月份max=max(month)
while @月份<=@月份max
begin
select top 5 * from table where month = @ysj_month order by money desc
set @月份=@月份+1
end
关注一下,集思广益。
SQL2005中好解,用rank()就行。
SQL2000中我开始想到的是枚举12个月份,然后union各个月的结果集。这个方法求一年的数据还可以适用,如果跨年度就比较累人了,假如跨10年,那就是要union 120次了,要累死。
看了一下清风泉的解答,用游标应该是比较省人力的方法,缺点就是耗计算机资源。
一起讨论,看看还有什么答案。
oracle中 这样题目有点难。。。mysql中好像最简单。。
有点难度,还有月工资相同的情况,哎,再想想...