I have a part of my request, as shown below, where TOP 1 should be split between two entries, as there are 2 exits that have the same number of visits. Apparently, the request will return only one record. How can I display the “exact” output in this case?
Select TOP 1 (O.Name) as MostVisited
From [Trans] T
INNER JOIN [Outlet] O
On (T.Outlet_Code = O.Code)
Where [VoidBy] IS NULL AND [VoidOn] IS NULL AND CardNo In
(Select [CardNo] From [Card] Where [CardNo] = 'CARDX' AND [MemberID] = @MemberId)
Group by O.Name
Order by Count(T.Outlet_Code) Desc
source
share