Reputation: 2775
My understanding is that
select ... order by column;
and
select ... order by column asc;
are functionally equivalent.
Is there any situation in which it would be required to use asc
?
Upvotes: 0
Views: 204
Reputation: 2999
MYSQL order by statement takes asc by default. if you want in descending order should specify desc
Upvotes: 2