Detailed explanation of the order of Mysql query results according to the order of ID in in()

Detailed explanation of the order of Mysql query results according to the order of ID in in()

Detailed explanation of the order of Mysql query results according to the order of ID in in()

Example code:

<select id="queryGBStyleByIDs" resultMap="styleMap"> 
    select style_num_id ,style_id,style_title,style_pic FROM gb_style where online = 1 AND is_hide = 0 and style_num_id in 
    <foreach collection="styleNumIDs" item="styleNumId" separator="," open="(" close=")"> 
     #{styleNumId} 
    </foreach> 
    ORDER BY FIELD 
    <foreach collection="styleNumIDs" item="styleNumId" separator="," open="(style_num_id," close=")"> 
      #{styleNumId} 
    </foreach> 
  </select> 

The final output sql is as follows:

select style_num_id ,style_id,style_title,style_pic FROM gb_style where online = 1 AND is_hide = 0 and style_num_id in (1,3,2,5) 
order by field (style_num_id,1,3,2,5);

If you have any questions, please leave a message or come to the community to discuss. Thank you for reading and I hope it can help you. Thank you for your support of this site!

You may also be interested in:
  • MySQL query in operation query results are displayed in the order of in set
  • Solve the problem that IN subquery in MySQL will cause the index to be unusable
  • Examples of optimization techniques for slow query efficiency in MySQL IN statements
  • Comparison of the efficiency of using or, in and union all in MySQL query commands
  • Mysql subquery IN using LIMIT application example
  • Will the index be used in the MySQL query condition?
  • A brief discussion on the efficiency of MySQL subquery union and in
  • Implementation of MySQL select in subquery optimization
  • MySQL SQL Optimization Tutorial: IN and RANGE Queries

<<:  One question to understand multiple parameters of sort command in Linux

>>:  Detailed explanation of CocosCreator message distribution mechanism

Recommend

Detailed graphic explanation of mysql query control statements

mysql query control statements Field deduplicatio...

How to implement Docker volume mounting

The creation of the simplest hello world output i...

Native js to achieve star twinkling effect

This article example shares the specific code of ...

How to install and connect Navicat in MySQL 8.0.20 and what to pay attention to

Things to note 1. First, you need to create a my....

Analysis of 2 Token Reasons and Sample Code in Web Project Development

Table of contents question: There are 2 tokens in...

How to use Font Awesome 5 in Vue development projects

Table of contents Install Dependencies Configurat...

In-depth analysis of the Identifier Case Sensitivity problem in MySQL

In MySQL, you may encounter the problem of case s...

How to enable the root account in Ubuntu 20.04

After Ubuntu 20.04 is installed, there is no root...

Detailed example of concatenating multiple fields in mysql

The MySQL query result row field splicing can be ...

mysql installer community 8.0.12.0 installation graphic tutorial

This tutorial shares the installation of mysql in...

Windows Server 2008 R2 Multi-User Remote Desktop Connection Licensing

At work, we often need remote servers and often e...

Whitespace processing in HTML/CSS and how to preserve whitespace in the page

Whitespace rules in HTML In HTML, multiple spaces...