Which is more efficient?
SELECT theField FROM theTable GROUP BY theField
or
SELECT DISTINCT theField FROM theTable
Hmmm...so far as I can see in the Execution Plan for running similar queries, they are identical.