SQL Server在同一天内找到指标

时间:2019-04-09 15:35:57

标签: sql-server

我正在尝试使用以下逻辑找到具有恢复编号的登录名。 ISO.Rpt.Log是我要使用以下逻辑从其查找指标的数据源。

先谢谢您!

逻辑:

在同一日历日内成功登录之前恢复其用户名或密码的用户数量(不同的UserID)。

成功恢复:

Select TransactionDt, UserID, StatusDetail 
from ISO.Rpt.Log
where EventSource = 'Customer'
  and EventName = 'LOGIN' 
  and EventType = 'ForgotEmail'
  and StatusDetail = 'Status: Status:RetrieveEmailSuccessful'

登录成功:

Select TransactionDt, UserID, StatusDetail 
from ISO.Rpt.Log
where EventSource = 'Customer'
  and EventName = 'Login' 
  and EventType = 'Standard'
  and StatusDetail = 'Status:LoginSuccessful'

0 个答案:

没有答案