0 votes
in SQLite by
Why is ORDER BY clause used with SELECT statement?

1 Answer

0 votes
by

The ORDER BY clause is used to sort the fetched data in a specific order either ascending or descending.

Syntax:

SELECT column-list     

FROM table_name     

[WHERE condition]     

[ORDER BY column1, column2, .. columnN] [ASC | DESC]; 

Related questions

0 votes
asked Nov 6, 2021 in Sql by rajeshsharma
0 votes
asked Apr 22, 2020 in DBMS by Hodge
...