SQL Course: SQL Order By in Hindi #sql #sqlforbeginners #javatpoint
The ORDER BY clause helps to sort the results of a SQL query. It orders the output based on one or more columns in ascending or descending order.
Syntax:
SELECT column1, column2, ...
FROM table_name
ORDER BY column1, column2, ... ASC|DESC;
コメント