InterviewSolution
Saved Bookmarks
| 1. |
What is the default ordering of data using the ORDER BY clause? How could it be changed? |
|
Answer» The default sorting order is ascending. It can be changed using the DESC keyword, after the column name in the ORDER BY clause. |
|