The ORDER BY clause in SQL is used to sort the result set of a query in ascending or descending order based on one or more columns. It is often used to organize data in a meaningful way, such as sorting names alphabetically or numbers numerically.

Key Points

  1. Sorting Data: The ORDER BY clause sorts the result set in ascending (ASC) or descending (DESC) order.
  2. Multiple Columns: You can sort by multiple columns, with the primary sort column listed first.
  3. Default Order: If no order is specified, the default is ascending (ASC).
  4. The ORDER BY clause is used with the SELECT statement.

Syntax

SELECT column1, column2, ...
FROM table_name
ORDER BY column1 [ASC|DESC], column2 [ASC|DESC], ...;
  • column1, column2, ...: The columns you want to retrieve.
  • table_name: The table from which to retrieve data.
  • ASC: Sorts the result set in ascending order (default).
  • DESC: Sorts the result set in descending order.

Examples

Suppose you have a table named Employees that stores employee details.

Table: Employees

EmployeeIDNameCityStateSalary
1AnandChennaiTamil Nadu50000
2BalaCoimbatoreTamil Nadu60000
3KavithaKaraikalPuducherry55000
4RajMaduraiTamil Nadu70000
5KumarTrichyTamil Nadu45000

To retrieve employees sorted by their names in ascending order:

SELECT Name, City, Salary
FROM Employees
ORDER BY Name ASC;
NameCitySalary
AnandChennai50000
BalaCoimbatore60000
KavithaKaraikal55000
KumarTrichy45000
RajMadurai70000

Sorting in Descending Order

To sort the employees by their salary in descending order:

SELECT Name, City, Salary
FROM Employees
ORDER BY Salary DESC;
NameCitySalary
RajMadurai70000
BalaCoimbatore60000
KavithaKaraikal55000
AnandChennai50000
KumarTrichy45000

Sorting by Multiple Columns

You can sort by multiple columns. For example, sort employees first by their state in ascending order and then by their salary in descending order.

SELECT Name, City, State, Salary
FROM Employees
ORDER BY State ASC, Salary DESC;
NameCityStateSalary
KavithaKaraikalPuducherry55000
RajMaduraiTamil Nadu70000
BalaCoimbatoreTamil Nadu60000
AnandChennaiTamil Nadu50000
KumarTrichyTamil Nadu45000

Using ORDER BY with WHERE Clause

You can combine the ORDER BY clause with the WHERE clause to filter and sort data. For example, retrieve employees from Tamil Nadu and sort them by salary in descending order.

SELECT Name, City, Salary
FROM Employees
WHERE State = 'Tamil Nadu'
ORDER BY Salary DESC;
NameCitySalary
RajMadurai70000
BalaCoimbatore60000
AnandChennai50000
KumarTrichy45000

Practical Use Case

Suppose you have a table named Students that stores student details, and you want to retrieve students sorted by their percentage in descending order.

Table: Students

StudentIDNameCityStatePercentage
1RamChennaiTamil Nadu92
2KarthikCoimbatoreTamil Nadu88
3DavidBangaloreKarnataka95
4KannanKaraikalPuducherry91
5SivaMaduraiTamil Nadu89
SELECT Name, City, Percentage
FROM Students
ORDER BY Percentage DESC;
NameCityPercentage
DavidBangalore95
RamChennai92
KannanKaraikal91
SivaMadurai89
KarthikCoimbatore88

Key Takeaways

  1. The ORDER BY clause is used to sort the result set in ascending (ASC) or descending (DESC) order.
  2. You can sort by one or more columns, with the primary sort column listed first.
  3. The default sorting order is ascending (ASC).
  4. The ORDER BY clause can be combined with the WHERE clause to filter and sort data.
  5. Sorting data makes it easier to analyze and interpret query results.