Python Tutorials · Python MySQL

MySQL Order By

Learn all about MySQL Order By in this comprehensive tutorial.

5 min read advanced
  • Use the ORDER BY statement to sort the result in ascending or descending order.
  • Use the DESC keyword to sort the result in a descending order.

Sort the Result

Use the ORDER BY statement to sort the result in ascending or descending order.

The ORDER BY keyword sorts the result ascending by default. To sort the result in descending order, use the DESC keyword.

python

ORDER BY DESC

Use the DESC keyword to sort the result in a descending order.

python

Module quiz

2 questions
1

Which of the following is true about MySQL Order By?

2

What is the most common pitfall when working with MySQL Order By?

Answer all questions to submit.