Example (MySQL):
CREATE TABLE foo(a INT, b INT, c INT); SELECT * FROM foo ORDER BY a ASC, b DESC, c ASC;
The ORDER BY keyword sorts the records in the ascending order by default. So, the ASC keyword for a and c columns is redundant.
ASC
a
c