0

我有一张桌子Customer_Complex_LoginLogs来记录客户入口。

我想获得一天内发生的最大入口数(并且我想知道发生这种情况的那一天)。

我知道我应该执行group by TFEnteranceDate

如何在 TSQL 中实现这一点?

表名:

Customer_Complex_LoginLogs

表字段:

Id guid  PK
Id_Customer guid   FK
TFEnteranceDate datetime
TFEnteranceDatep nvarchar(10)
4

1 回答 1

3

如果没有更多信息,这可能是一个简单的 GROUP BY

SELECT TOP 1 TFEnteranceDate, Count(TFEnteranceDate) as Enterance
FROM Customer_Complex_LoginLogs 
GROUP BY TFEnteranceDate
ORDER BY Count(TFEnteranceDate) DESC

编辑:记录最大数量的 TFEnteranceDate 的那一天

于 2013-02-24T11:55:47.883 回答