How to Sort Data in SQL

Need your SQL results in a specific order?

Use ORDER BY.

How to Sort Data in SQL

Common options:

  • ASC sorts values in ascending order
  • DESC sorts values in descending order
  • Sort by one column
  • Sort by multiple columns
  • Combine sorting with WHERE

Without ORDER BY, the database does not guarantee the order of returned rows.

If order matters, ask the database to order the results.