Tell me what is the use of ORDER BY clause in MariaDB?

Submitted by: Muhammad
MariaDB ORDER BY Clause is used to sort the records in your result set in ascending or descending order.

Syntax:
SELECT expressions
FROM tables
[WHERE conditions]
ORDER BY expression [ ASC | DESC ];
Submitted by: Muhammad

Read Online MariaDB Job Interview Questions And Answers