In this article, you will learn How to use ORDER BY in Mysql.Syntax:-SELECT column1, column2, ... FROM table_name ORDER BY column1, column2, ... ASC/DESC;ORDER BY DESC Example:-SELECT * FROM Students ORDER BY StudentID DESC;ORDER BY …
In this article, you will learn How to use ORDER BY in Mysql.
Syntax:-
SELECT column1, column2, ... FROM table_name ORDER BY column1, column2, ... ASC/DESC;
ORDER BY DESC Example:-
SELECT * FROM Students ORDER BY StudentID DESC;
ORDER BY …