Informatics Practices

What is the use of ORDER BY clause ?

SQL Queries

2 Likes

Answer

In SQL, the ORDER BY clause is used to sort the rows of the result set produced by a SELECT statement. We can specify one or more columns in the ORDER BY clause to sort the result set either in ascending (default) or descending order.

Answered By

1 Like


Related Questions