sort data so that most frequent name appears last

D

DRMK

please tell me how do i sort data in which the most frequent name appears
last in the datasheet
 
M

Michael Gramelspacher

please tell me how do i sort data in which the most frequent name appears
last in the datasheet
Example:

SELECT last_name, COUNT(last_name) AS [last_name count]
FROM Persons
GROUP BY last_name
ORDER BY COUNT(last_name);
 
Top