我用它来获取每周不同 RepID 的序列号和计数。但是我希望序列号值不是序列号(1、2、3),而是第 1 周、第 2 周、第 3 周。这怎么可能?这是使用 SQL Server 2005。谢谢!
Select ROW_NUMBER() OVER (ORDER BY Date) As SlNo, count(distinct(RepID))
from Reptable
where Month(Date) = @Month
group by Datepart(week, Date)
我用它来获取每周不同 RepID 的序列号和计数。但是我希望序列号值不是序列号(1、2、3),而是第 1 周、第 2 周、第 3 周。这怎么可能?这是使用 SQL Server 2005。谢谢!
Select ROW_NUMBER() OVER (ORDER BY Date) As SlNo, count(distinct(RepID))
from Reptable
where Month(Date) = @Month
group by Datepart(week, Date)