Implementation of MySQL custom list sorting by specified field

Implementation of MySQL custom list sorting by specified field

Problem Description

As we all know, the SQL to sort in ascending order by a field in MySQL is (taking id as an example, the same below):

SELECT * FROM `MyTable`
WHERE `id` IN (1, 7, 3, 5)
ORDER BY `id` ASC

The SQL for descending order is:

SELECT * FROM `MyTable`
WHERE `id` IN (1, 7, 3, 5)
ORDER BY `id` DESC

Sometimes the above sorting does not meet our needs. For example, we want to sort by id in the order of 5, 3, 7, 1, how to achieve it? This is also one of the problems often encountered by many domestic and foreign counterparts.

Below we give a solution to sort a field in the table in the list format we want.

Solution

Use "ORDER BY FIELD".

grammar

ORDER BY FIELD(`id`, 5, 3, 7, 1)

Note that there is no space after FIELD.

Therefore, the complete SQL is:

SELECT * FROM `MyTable`
WHERE `id` IN (1, 7, 3, 5)
ORDER BY FIELD(`id`, 5, 3, 7, 1)

Common Applications

SELECT * FROM `MyTable`
WHERE `name` IN ('张三', '李四', '王五', '孙六')
ORDER BY FIELD(`name`, '李四', '孙六', '张三', '王五')

The above article on how to implement MySQL custom list sorting by specified fields is all I want to share with you. I hope it can give you a reference. I also hope that you will support 123WORDPRESS.COM.

You may also be interested in:
  • Mysql method to copy a column of data in one table to a column in another table
  • MySQL FAQ series: When to use temporary tables
  • Sql query MySql database table name and description table field (column) information
  • An example of how to use Java+MySQL recursion to concatenate tree-shaped JSON lists
  • Summary of Mysql table, column, database addition, deletion, modification and query problems
  • How to get the field list after querying the results of the Python module pymysql
  • MySQL table and column comments summary

<<:  Detailed explanation of Vite's new experience

>>:  How to use vite to build vue3 application

Recommend

An article to understand the usage of typeof in js

Table of contents Base Return Type String and Boo...

Manually install mysql5.7.10 on Ubuntu

This tutorial shares the process of manually inst...

How to use the realip module in Nginx basic learning

Preface There are two types of nginx modules, off...

JS cross-domain XML--with AS URLLoader

Recently, I received a requirement for function ex...

How to monitor the running status of docker container shell script

Scenario The company project is deployed in Docke...

Linux firewall status check method example

How to check the status of Linux firewall 1. Basi...

Analysis of MySQL's method of exporting to Excel

This article describes how to use MySQL to export...

MySQL installation tutorial under Linux centos7 environment

Detailed introduction to the steps of installing ...

Detailed explanation of Angular parent-child component communication

Table of contents Overview 1. Overview of input a...

MySQL 8.0.14 installation and configuration method graphic tutorial

This article records the installation and configu...

Vue implements a simple calculator

This article example shares the specific code of ...

HTML page header code is completely clear

All the following codes are between <head>.....

HTML Tutorial: HTML horizontal line segment

<br />This tag can display a horizontal line...