SQL ORDER BY – The Complete Guide (2024)

The SQL ORDER BY clause and functionality is an important part of a SELECT statement. Learn what it does and how to use it in this article.

Table of Contents

What Is The SQL ORDER BY Clause?

The SQL ORDER BY clause allows you to order your results. You can specify what you want to order by, and can even order by multiple columns.

By default, the SQL results are not ordered in any specific order. Without the ORDER BY clause in your SQL query, the results may look like they are in a certain order. However, the Oracle database cannot guarantee that the results will always be in the same order.

So, if you need results to be ordered, then add the ORDER BY clause.

Syntax and Parameters of SQL ORDER BY

The syntax of the SQL ORDER BY clause is:

ORDER BY {column_name | column_position | expression}[ ASC | DESC ][ NULLS FIRST | NULLS LAST ]

In this clause:

  • column_name is one of the columns in your SELECT clause or in your table that you want to order by.
  • column_position is a number that refers to the position of a column in your SELECT statement.
  • expression is a valid SQL expression that you want to order your results by
  • ASC or DESC can be used to specify the order of the data. ASC is ascending, and DESC is descending. This is optional, and if it is not provided, the default sort order is ASC.
  • NULLS FIRST or NULLS LAST can be used to specify how NULL values are sorted. This only applies to Oracle SQL. NULLS FIRST means that NULL values are shown at the top of the list, and NULLS LAST means that NULL values are shown at the bottom of the list. The default treatment if this is not specified is NULLS FIRST if the sort is DESC, or NULLS LAST if the sort is ASC or not specified.

Also, the column that you order by does not need to exist in the SELECT clause. So you don’t need to see the column in your results to use it in the ORDER BY.

Examples

I think the easiest way to learn is to see examples. So, I’ll show you a few ways you can use the SQL ORDER BY clause in Oracle.

I’ll be using this table to perform the SELECT queries on.

SALESPERSON_IDFIRST_NAMESALARYCOMMISSIONHIRE_DATE
1John9000010001-Jan-16
2Sally950005005-Sep-16
3Mark10100080012-Aug-16
4Tina8700090024-Oct-16
5Steve1000005002-Feb-16
6Michelle1200006003-Dec-16
7Alex85000(null)17-Jan-16
8Jo115000120030-Oct-16

Example 1 – ORDER BY Column Name

This example orders by a single column name.

SELECTsalesperson_id,first_name,salary,commission,hire_dateFROM salespersonORDER BY first_name;

Result:

SALESPERSON_IDFIRST_NAMESALARYCOMMISSIONHIRE_DATE
7Alex85000(null)17-Jan-16
8Jo115000120030-Oct-16
1John9000010001-Jan-16
3Mark10100080012-Aug-16
6Michelle1200006003-Dec-16
2Sally950005005-Sep-16
5Steve1000005002-Feb-16
4Tina8700090024-Oct-16

All of the records are ordered by the first_name column. ASC or DESC was not specified, so by default, they are ordered in ASC order.

Example 2 – ORDER BY Column Name using ASC

This example orders by a column name and uses the ASC keyword.

SELECTsalesperson_id,first_name,salary,commission,hire_dateFROM salespersonORDER BY salary ASC;

Result:

SALESPERSON_IDFIRST_NAMESALARYCOMMISSIONHIRE_DATE
7Alex85000(null)17-Jan-16
4Tina8700090024-Oct-16
1John9000010001-Jan-16
2Sally950005005-Sep-16
5Steve1000005002-Feb-16
3Mark10100080012-Aug-16
8Jo115000120030-Oct-16
6Michelle1200006003-Dec-16

This sorts the data in the table by salary in ascending order, which for numbers, is from smallest to highest.

Example 3 – ORDER BY Column Name using DESC

This example orders by a column name and uses the DESC keyword.

SELECTsalesperson_id,first_name,salary,commission,hire_dateFROM salespersonORDER BY salary DESC;

Result:

SALESPERSON_IDFIRST_NAMESALARYCOMMISSIONHIRE_DATE
6Michelle1200006003-Dec-16
8Jo115000120030-Oct-16
3Mark10100080012-Aug-16
5Steve1000005002-Feb-16
2Sally950005005-Sep-16
1John9000010001-Jan-16
4Tina8700090024-Oct-16
7Alex85000(null)17-Jan-16

This sorts the data in the table by salary in descending order, which for numbers, is from highest to smallest.

Example 4 – ORDER BY Column Number

This example shows you how to order your results by specifying a column number.

SELECTsalesperson_id,first_name,salary,commission,hire_dateFROM salespersonORDER BY 2 DESC;

Result:

SALESPERSON_IDFIRST_NAMESALARYCOMMISSIONHIRE_DATE
4Tina8700090024-Oct-16
5Steve1000005002-Feb-16
2Sally950005005-Sep-16
6Michelle1200006003-Dec-16
3Mark10100080012-Aug-16
1John9000010001-Jan-16
8Jo115000120030-Oct-16
7Alex85000(null)17-Jan-16

This sorts the results by the second column in the SELECT clause. In this case, it is the first_name column (salesperson_id is column 1, first_name is column 2, salary is 3, and so on).

This is the order of the columns in the SELECT clause, and not the table.

I try to avoid using column numbers when ordering, as it’s not clear which column is being ordered. Also, if the sequence that the columns are mentioned in the SELECT clause is changed, then the ordering will break, or order by the incorrect values.

Example 5 – ORDER BY a Column Alias

This example shows you how you can order by a column alias. This is very helpful to reduce the amount of code you write and to keep your logic in one place (the SELECT clause, for example).

SELECTsalesperson_id,first_name,salary + commission AS total_earningsFROM salespersonORDER BY total_earnings DESC;

Result:

SALESPERSON_IDFIRST_NAMETOTAL_EARNINGS
7Alex(null)
6Michelle120600
8Jo116200
3Mark101800
5Steve100500
2Sally95500
1John91000
4Tina87900

This query shows the salespeople in order of their total earnings. Using a column alias in the SQL ORDER BY clause is helpful, especially when working with complicated functions.

Example 6 – ORDER BY an Expression

This example shows how you can order by an expression.

SELECTsalesperson_id,first_name,salary/52FROM salespersonORDER BY salary/52 DESC;

Result:

SALESPERSON_IDFIRST_NAMESALARY/52
6Michelle2307.692308
8Jo2211.538462
3Mark1942.307692
5Steve1923.076923
2Sally1826.923077
1John1730.769231
4Tina1673.076923
7Alex1634.615385

This query shows the weekly salary of each salesperson.

Example 7 – ORDER BY Function

This example shows how you can use ORDER BY with a function.

SELECTsalesperson_id,first_name,FLOOR(salary/52)FROM salespersonORDER BY FLOOR(salary/52) DESC;

Result:

SALESPERSON_IDFIRST_NAMEFLOOR(SALARY/52)
6Michelle2307
8Jo2211
3Mark1942
5Steve1923
2Sally1826
1John1730
4Tina1673
7Alex1634

You can see that the results have been ordered by the function value.

Example 8 – ORDER BY with NULLS FIRST (Oracle)

This example shows how the NULLS FIRST keyword works.

SELECTsalesperson_id,first_name,salary,commissionFROM salespersonORDER BY commission NULLS FIRST;

Result:

SALESPERSON_IDFIRST_NAMESALARYCOMMISSION
7Alex85000(null)
2Sally95000500
5Steve100000500
6Michelle120000600
3Mark101000800
4Tina87000900
1John900001000
8Jo1150001200

As you can see, the NULL values are shown at the top of the list.

Example 9 – ORDER BY with NULLS LAST

(Oracle)

This example shows how the NULLS LAST keyword works.

SELECTsalesperson_id,first_name,salary,commissionFROM salespersonORDER BY commission NULLS LAST;

Result:

SALESPERSON_IDFIRST_NAMESALARYCOMMISSION
2Sally95000500
5Steve100000500
6Michelle120000600
3Mark101000800
4Tina87000900
1John900001000
8Jo1150001200
7Alex85000(null)

As you can see, the NULL values are shown at the bottom of the list.

Example 10 – ORDER BY Two Columns

This example shows how you can use SQL ORDER BY with two columns.

SELECTsalesperson_id,first_name,salary,commissionFROM salespersonORDER BY commission, salary;

Result:

SALESPERSON_IDFIRST_NAMESALARYCOMMISSION
2Sally95000500
5Steve100000500
6Michelle120000600
3Mark101000800
4Tina87000900
1John900001000
8Jo1150001200
7Alex85000(null)

This query orders by the commission values in ascending order, then for records where the commission is the same, it orders by salary in ascending order.

Example 11 – ORDER BY Two Columns in Different Order

This example orders by two columns, but they are in a different order.

SELECTsalesperson_id,first_name,salary,commissionFROM salespersonORDER BY commission ASC, salary DESC;

Result:

SALESPERSON_IDFIRST_NAMESALARYCOMMISSION
5Steve100000500
2Sally95000500
6Michelle120000600
3Mark101000800
4Tina87000900
1John900001000
8Jo1150001200
7Alex85000(null)

This query orders by the commission values in ascending order, then for records where the commission is the same, it orders by salary in descending order.

Common Questions

Here are some common questions when it comes to using the Order By clause.

What Is SQL Order By 1?

ORDER BY 1 means that the results of the query are ordered by the first column specified in the SELECT clause.

You might see an SQL query that has “ORDER BY 1” in it:

SELECTsalesperson_id,first_name,salary,commissionFROM salespersonORDER BY 1;

This would order the results by the first column in the SELECT clause, which is the salesperson_id column in this example.

What Is SQL Order By 2?

This means that the results of the query are ordered by the second column specified in the SELECT clause.

For example:

SELECTsalesperson_id,first_name,salary,commissionFROM salespersonORDER BY 2;

This would order the results by the first_name column as it is the second column in the SELECT list.

You can change the ORDER BY 2 to any other number, up to the number of columns in the select clause.

ORDER BY 3 will order by the third column, for example.

Can we use WHERE with ORDER BY?

Yes, you can use the WHERE clause with or without the ORDER BY clause.

When you use WHERE in a query with ORDER BY, the results are filtered to only those that match the WHERE clause, and then the results are ordered based on what criteria you specified in the ORDER BY clause.

Which comes first – ORDER BY or WHERE?

The WHERE clause must come before the ORDER BY clause in the SELECT query. In almost all cases, the ORDER BY clause is the last clause in the query.

Can we use two columns in the ORDER BY clause?

Yes, you can use two columns (or as many columns as you like). You can separate each column with a comma, and can even specify ascending or descending for each column.

For example:

SELECTsalesperson_id,first_name,salary,commissionFROM salespersonORDER BY commission ASC, salary DESC;

This query will order the results by commission in ascending order and then salary in descending order.

Conclusion

So, that’s how you can use the SQL ORDER BY clause in Oracle SQL to order your results. It’s a powerful clause and has a few keywords to get you the result that you need.

Lastly, if you enjoy the information and career advice I’ve been providing, sign up to my newsletter below to stay up-to-date on my articles. You’ll also receive a fantastic bonus. Thanks!

SQL ORDER BY – The Complete Guide (2024)

FAQs

What is the sequence of ORDER BY in SQL? ›

SQL ORDER BY Keyword
  • ORDER BY. The ORDER BY command is used to sort the result set in ascending or descending order. ...
  • ASC. The ASC command is used to sort the data returned in ascending order. ...
  • DESC. The DESC command is used to sort the data returned in descending order.

What is the correct order of SQL statements? ›

Since a lot of people think SQL processes queries from top to bottom as they have written. But SQL processes queries in the order: FROM, JOIN, WHERE, GROUP BY, HAVING, SELECT, DISTINCT, ORDER BY, and finally, LIMIT/OFFSET.

What is the order of precedence in SQL? ›

The order of precedence for SQL operators and functions is determined by the SQL standard and is based on mathematical conventions such as the order of operations. For example, multiplication and division have a higher precedence than addition and subtraction, and logical AND has a higher precedence than logical OR.

What is the difference between DESC and ASC? ›

Answer: In general terms, Ascending means smallest to largest, 0 to 9, and/or A to Z and Descending means largest to smallest, 9 to 0, and/or Z to A. Ascending order means the smallest or first or earliest in the order will appear at the top of the list: For numbers or amounts, the sort is smallest to largest.

What comes first in SQL, ORDER BY or GROUP BY? ›

When combining the Group By and Order By clauses, it is important to bear in mind that, in terms of placement within a SELECT statement: The GROUP BY clause is placed after the WHERE clause. The GROUP BY clause is placed before the ORDER BY clause.

What is the ORDER BY rule in SQL? ›

The SQL ORDER BY clause sorts the results of a SELECT statement in either ascending or descending order based on one or more columns. You can use “DESC” with the SQL ORDER BY to list the rows based on the column you choose. In this example, the data follows the descending order of the year launch.

What are the rules of precedence order? ›

Precedence Rules
OperationDesciptionExecution Order
* / %Multiplication Division Module divisionFrom left to right
+ —Addition SubtractionFrom left to right
<< >>Left shift Right shiftFrom left to right
< <= > >=Less than Less than or equal Greater than Greater than or equalFrom left to right
11 more rows

How do you ORDER BY highest first in SQL? ›

To ORDER BY a list in SQL, use the ORDER BY clause followed by the column names to sort the results. You can specify the sorting order by adding ASC for ascending or DESC for descending order after each column.

What is the order of precedence formula? ›

For example, multiplication is granted a higher precedence than addition, and it has been this way since the introduction of modern algebraic notation. Thus, in the expression 1 + 2 × 3, the multiplication is performed before addition, and the expression has the value 1 + (2 × 3) = 7, and not (1 + 2) × 3 = 9.

Is ORDER BY ASC by default? ›

ASC sorts from the lowest value to highest value. DESC sorts from highest value to lowest value. ASC is the default sort order.

How to write ORDER BY ASC in SQL? ›

If you want to sort some of the data in ascending order and other data in descending order, then you would have to use the ASC and DESC keywords. SELECT * FROM table ORDER BY column1 ASC, column2 DESC; That is how to use the ORDER BY clause in SQL to sort data in ascending order.

What is the difference between ORDER BY and ORDER BY ASC? ›

If you use ORDER BY, it must be the last clause in the entire statement. Any columns named after ORDER BY must also be named after SELECT. The ASC keyword specifies that you want the data to appear in ascending order; this is the default if no sequence is specified.

Does ORDER BY or WHERE come first in SQL? ›

The ORDER BY clause must come after the WHERE, GROUP BY, and HAVING clause if present in the query. Use ASC or DESC to specify the sorting order after the column name. Use ASC to sort the records in ascending order or use DESC for descending order.

What comes after ORDER BY in SQL? ›

The first thing you'll learn in SQL is the order in which we write various clauses in our queries (SELECT, FROM, WHERE, GROUP BY, HAVING, ORDER BY, then LIMIT).

What is the correct sequence when using ORDER BY and limit together? ›

How ORDER BY and LIMIT go together. Being able to order the result rows is particularly useful when using LIMIT , as it allows us to quickly return just the "top 3" or "bottom 10" of the results. The ORDER BY clause goes after the FROM clause but before the LIMIT .

How does ORDER BY work in SQL? ›

To ORDER BY a list in SQL, use the ORDER BY clause followed by the column names to sort the results. You can specify the sorting order by adding ASC for ascending or DESC for descending order after each column.

References

Top Articles
Latest Posts
Article information

Author: Kimberely Baumbach CPA

Last Updated:

Views: 5412

Rating: 4 / 5 (61 voted)

Reviews: 84% of readers found this page helpful

Author information

Name: Kimberely Baumbach CPA

Birthday: 1996-01-14

Address: 8381 Boyce Course, Imeldachester, ND 74681

Phone: +3571286597580

Job: Product Banking Analyst

Hobby: Cosplaying, Inline skating, Amateur radio, Baton twirling, Mountaineering, Flying, Archery

Introduction: My name is Kimberely Baumbach CPA, I am a gorgeous, bright, charming, encouraging, zealous, lively, good person who loves writing and wants to share my knowledge and understanding with you.