加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 站长学院 > MsSql教程 > 正文

详解 Mysql查询结果顺序按 in() 中ID 的顺序排列

发布时间:2020-12-12 07:23:18 所属栏目:MsSql教程 来源:网络整理
导读:详解 Mysql查询结果顺序按 in() 中ID 的顺序排列 实例代码: 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 colle

详解 Mysql查询结果顺序按 in() 中ID 的顺序排列

实例代码:

<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> 

最终输出sql如下:

select style_num_id,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,5);

如有疑问请留言或者到本站社区交流讨论,感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读