MySQL uses find_in_set() function to implement where in() order sorting

MySQL uses find_in_set() function to implement where in() order sorting

This article introduces a tutorial about how to use the find_in_set() function to sort by the order in where in () in MySQL. I hope this tutorial can be helpful to you.

select * from table where id in ('783',' 769',' 814',' 1577',' 1769') 
order by find_in_set( id, '783, 769, 814, 1577, 1769' )

Check out:

769
1577
814
1769
783

Why not the order 783 769 814 1577 1769?

Note: After searching, it was found that the cause was in find_in_set. If there is a space in the second parameter of find_in_set, the order will be messed up, because MySQL will not trim the space character for you before querying.

so...

After removing spaces:

select * from table where id in ('783',' 769',' 814',' 1577',' 1769') 
order by find_in_set( id, '783,769,814,1577,1769' ) 

Note that it is just removed
Spaces in '783,769,814,1577,1769'

Check it out again:
783
769
814
1577
1769

So far, we have implemented the sorting using where in find_in_set. find_in_set can also implement multi-condition sorting.

Summarize

The above is all about how MySQL uses the find_in_set() function to implement where in() order sorting. Interested friends can refer to: MySQL database table partitioning precautions [recommended], several important MySQL variables, sql and MySQL statement execution order analysis, etc. If there are any deficiencies, you are welcome to leave a message to correct them. I hope this helps you all.

You may also be interested in:
  • Detailed explanation of the use of find_in_set() function and in() in mysql
  • How to use the MySQL FIND_IN_SET function
  • Detailed explanation of the use of the built-in function locate instr position find_in_set in MySQL efficient fuzzy search
  • Detailed explanation of the use of find_in_set() function in MySQL
  • Basic usage of find_in_set function in mysql

<<:  Install Memcached and PHP Memcached extension under CentOS

>>:  How to build a drag and drop plugin using vue custom directives

Recommend

Docker deployment and installation steps for Jenkins

First, we need a server with Docker installed. (I...

Installation and configuration tutorial of MySQL 8.0.16 under Win10

1. Unzip MySQL 8.0.16 The dada folder and my.ini ...

Specific use of Linux dirname command

01. Command Overview dirname - strip non-director...

Vue realizes picture switching effect

This article example shares the specific code of ...

MySQL high availability solution MMM (MySQL multi-master replication manager)

1. Introduction to MMM: MMM stands for Multi-Mast...

How to modify Flash SWF files in web pages

I think this is a problem that many people have en...

Best Practices for Implementing Simple Jira Projects with React+TS

A set of projects for training react+ts Although ...

Analysis of slow insert cases caused by large transactions in MySQL

【question】 The INSERT statement is one of the mos...

Detailed tutorial on how to install mysql8.0 using Linux yum command

1. Do a good job of cleaning before installation ...

A brief introduction to MySQL InnoDB ReplicaSet

Table of contents 01 Introduction to InnoDB Repli...

Example of how to enable Brotli compression algorithm for Nginx

Brotli is a new data format that can provide a co...

Tips for Mixing OR and AND in SQL Statements

Today, there is such a requirement. If the logged...