If you have a query like
SELECT Distinct Person_Name, Count(*) From Person_table
Group BY Person_Name (Thanks Mathew!)
does the Distinct do anything? I know the results are the same with and without the Distinct, but does it add anything behind the scenes? The executiuon plans seem to be the same.
Steve