Member
horace
What is the difference between DISTINCT and GROUP BY?
julio.mcglynn
DISTINCT can return NULL values because it considers NULL as a value and selects one NULL from many, however, GROUP BY does not consider NULL values as a record. GROUP BY sorts the records where DISTINCT does not.