Home >Database >Mysql Tutorial >How to Sort a MySQL Table by Multiple Columns (Rating then Date)?

How to Sort a MySQL Table by Multiple Columns (Rating then Date)?

Mary-Kate Olsen
Mary-Kate OlsenOriginal
2024-12-22 22:12:10392browse

How to Sort a MySQL Table by Multiple Columns (Rating then Date)?

Sorting MySQL Tables by Multiple Columns

To order a MySQL table by multiple columns, specify the columns in the ORDER BY clause separated by commas. By default, sorting is ascending. To sort in descending order for a specific column, use the DESC keyword after the column name.

In your case, you want to sort articles by highest ratings first and then by most recent date. Use the following query:

ORDER BY article_rating DESC, article_time DESC

This will produce the following output:

+================+=============================+==============+
| article_rating | article                     | article_time |
+================+=============================+==============+
| 50             | This article rocks          | Feb 4, 2009  |
+----------------+-----------------------------+--------------+
| 35             | This article is pretty good | Feb 1, 2009  |
+----------------+-----------------------------+--------------+
| 5              | This Article isn't so hot   | Jan 25, 2009 |
+================+=============================+==============+

The above is the detailed content of How to Sort a MySQL Table by Multiple Columns (Rating then Date)?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn