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
Release: 2024-12-22 22:12:10
Original
369 people have browsed it

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
Copy after login

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 |
+================+=============================+==============+
Copy after login

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!

source:php.cn
Statement of this Website
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
Latest Articles by Author
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template