Mysql查詢結(jié)果順序按in()中ID的順序排列的案例區(qū)分
發(fā)表時(shí)間:2023-07-19 來(lái)源:明輝站整理相關(guān)軟件相關(guān)文章人氣:
[摘要]這篇文章主要介紹了詳解 Mysql查詢結(jié)果順序按 in() 中ID 的順序排列的相關(guān)資料,希望通過(guò)本文能幫助到大家,需要的朋友可以參考下詳解 Mysql查詢結(jié)果順序按 in() 中ID 的順序排列實(shí)...
這篇文章主要介紹了詳解 Mysql查詢結(jié)果順序按 in() 中ID 的順序排列的相關(guān)資料,希望通過(guò)本文能幫助到大家,需要的朋友可以參考下
詳解 Mysql查詢結(jié)果順序按 in() 中ID 的順序排列
實(shí)例代碼:
<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_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);
以上就是Mysql查詢結(jié)果順序按in()中ID的順序排列的實(shí)例分析的詳細(xì)內(nèi)容,更多請(qǐng)關(guān)注php中文網(wǎng)其它相關(guān)文章!
學(xué)習(xí)教程快速掌握從入門(mén)到精通的SQL知識(shí)。