Which of these clauses sorts a result set in ascending order?

ORDER BY age ASCORDER BY ageSELECT DISTINCTORDER BY age DESC

Yippee! The ORDER BY clause sorts in ascending order by default, but we can explicitly tell it to as well.

Not quite! The ORDER BY clause sorts in ascending order by default, but we can explicitly tell it to as well.