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` The SQL for descending order is: SELECT * FROM `MyTable` 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` Common Applications SELECT * FROM `MyTable` 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:
|
<<: Detailed explanation of Vite's new experience
>>: How to use vite to build vue3 application
Table of contents Base Return Type String and Boo...
This tutorial shares the process of manually inst...
Preface There are two types of nginx modules, off...
Recently, I received a requirement for function ex...
Scenario The company project is deployed in Docke...
Note 1: The entire background in the above pictur...
How to check the status of Linux firewall 1. Basi...
This article describes how to use MySQL to export...
Detailed introduction to the steps of installing ...
Table of contents Overview 1. Overview of input a...
This article records the installation and configu...
This article example shares the specific code of ...
All the following codes are between <head>.....
<br />This tag can display a horizontal line...
Table of contents 1. Download MySQL msi version 2...