Row_Number()超过分区查询

时间:2013-01-16 06:24:36

标签: sql tsql

我有以下查询:

declare @temp1 table
(ID1 int not null,
 ID2 int not null)

set nocount off

insert into @temp1 values(1453,931)
insert into @temp1 values(1454,931)
insert into @temp1 values(1455,931)

insert into @temp1 values(2652,1101)
insert into @temp1 values(2653,1101)
insert into @temp1 values(2654,1101)
insert into @temp1 values(2655,1101)
insert into @temp1 values(2656,1101)

insert into @temp1 values(3196,1165)

insert into @temp1 values(3899,1288)
insert into @temp1 values(3900,1288)
insert into @temp1 values(3901,1288)
insert into @temp1 values(3902,1288)

--select * from @temp1

select ID1,ID2, ROW_NUMBER() over(partition by ID2 order by ID1) as RowNum1
from @temp1

我现在要做的是创建一个新列,将所有ID2组合在一起..具有931的ID2应该在新列中具有值1,1101应该具有2,1165应该是3,最后所有1288应该是有4 ...我可以帮忙吗?

1 个答案:

答案 0 :(得分:7)

您可以使用DENSE_RANK()来获得结果。它返回结果集分区内的行级别,排名中没有任何间隙。行的等级是一行加上有关行之前的不同等级的数量。有关详细信息,请参阅链接DENSE_RANK (Transact-SQL)。请尝试:

select ID1, ID2, DENSE_RANK() over(order by ID2) as RowNum1
from @temp1