You can also use WITH TIES keywordSELECT Top(1) WITH TIES [GameID]
,[PlayerUserName]
,[PlayerScore]
FROM [Players]
ORDER BY PlayerScore
Unless this is golf, you may want to add a DESC keyword in the order by clause (to pick the highest score rather than the lowest).