I am trying to return just the first result of a query after it is sorted in alphabetical order:
SELECT MIN(DisplayName) FROM [User] GROUP BY DisplayName
I believed the above would do the trick. But it is still returing all results in alphabetical order. How do I get the desired results?