0
By default, ORDER BY statement sort record in ascending order. What if you wanted to sort it in descending order? What statement shall be used?
2 odpowiedzi
0
you should add DESC after column name.
eg, ORDER BY Column_Name DESC
0
order by ColumnName DESC