Home > Database > Mysql Tutorial > body text

How to Order Data By Different Columns Based on a Condition in MySQL?

DDD
Release: 2024-11-16 02:09:02
Original
355 people have browsed it

How to Order Data By Different Columns Based on a Condition in MySQL?

How to Order By Different Columns Based on a Condition

In MySQL, it is possible to order data by different columns based on a condition using SQL functions or the CASE statement.

Using the IF Function:

To use the IF function in the ORDER BY clause, you can specify two expressions separated by a comma. The first expression is the condition that determines which expression to use. The second expression is the value to use if the condition is true.

For example:

ORDER BY IF(TYPE='Member', LNAME, GROUPNAME) ASC
Copy after login

This statement will order the data by the LNAME column if the TYPE column is equal to 'Member', and by the GROUPNAME column if the TYPE column is equal to 'Group'.

Using the CASE Statement:

The CASE statement is a more flexible option for ordering data by different columns based on a condition. It allows you to specify multiple conditions and corresponding expressions.

For example:

ORDER BY 
    CASE `type` 
        WHEN 'Member' THEN LNAME 
        WHEN 'Group' THEN GROUPNAME
        ELSE 1 END 
    ASC
Copy after login

In this statement, the data will be ordered by the LNAME column if the type column is equal to 'Member', by the GROUPNAME column if the type column is equal to 'Group', and by a value of 1 otherwise.

The above is the detailed content of How to Order Data By Different Columns Based on a Condition in MySQL?. 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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template