0

在此处输入图像描述

这是源表。我想在特定时间检索具有 TOP 10 最大 sessionIds 的用户的 Name 、 Host 和 SessionId

例子

主机名 SessionId NoOfSessionsOpen ( 10.42.64.79 , thidrat.xyz , tkj7j , 4 )

4

1 回答 1

1
select top 10 Name, Host, SessionID, count(*)
from Table
where TimeLog between @a and @b
group by Name, Host, SessionID
order by count(*) desc, Name, Host, SessionID --define a total sort order for determinism
于 2012-06-12T13:29:01.400 回答