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:
|
<<: One question to understand multiple parameters of sort command in Linux
>>: Detailed explanation of CocosCreator message distribution mechanism
mysql query control statements Field deduplicatio...
The creation of the simplest hello world output i...
The <area> tag is mainly used in image maps...
This article example shares the specific code of ...
1. Background 1. The front end uses vue + vuex + ...
Things to note 1. First, you need to create a my....
Table of contents question: There are 2 tokens in...
Table of contents Install Dependencies Configurat...
In MySQL, you may encounter the problem of case s...
After Ubuntu 20.04 is installed, there is no root...
The MySQL query result row field splicing can be ...
This tutorial shares the installation of mysql in...
At work, we often need remote servers and often e...
Whitespace rules in HTML In HTML, multiple spaces...
Closure implementation of private variables Priva...