You can use an ORDER BY clause to order the results of a GROUP BY in a particular way.
The following query finds the average price of each product and orders the results by average price:
SELECT Name, AVG( UnitPrice ) FROM Products GROUP BY Name ORDER BY AVG( UnitPrice );