ORDER BY sorts the results. Name a column and a direction: DESC for largest first, or ASC for smallest first.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Sort the results by one or more columns
ORDER BY sorts the results. Name a column and a direction: DESC for largest first, or ASC for smallest first.
FROM sales
SHOW total_revenue, units_sold
GROUP BY vendor
ORDER BY total_revenue DESC
FROM sales
SHOW total_revenue, units_sold
GROUP BY vendor
ORDER BY total_revenue DESC, units_sold ASC
