I want to use distinct & top in the same time , i did
SELECT distinct TOP 10 * FROM TableA
but i still have a duplicate PersonId so i tought to do :
SELECT distinct (personID) TOP 10 * FROM TableA
but the syntax is wrong , so i wonder if there is any solution
thanks,