Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Select ClientID, sum(TransactionAmount) as TotalAmount, count(distinct TransactionID) as TransactionCount from myTable where TransactionDate <=dateadd(hour, -48, getdate()) group by ClientID having sum(TransactionAmount) >400 and count(distinct TransactionID) > =2