Problem Statement
What is the default sort order when ORDER BY is used without ASC or DESC?
Explanation
ORDER BY sorts ascending by default. Use DESC for reverse order.
Without ORDER BY, row order is not guaranteed, even if it looks stable in small tests.
Code Solution
SolutionRead Only
SELECT name FROM customers ORDER BY name;
