SQL是Structured Query Language(结构化查询语言)的缩写。SQL是专为数据库而建立的操作命令集,是一种功能齐全的数据库语言。在使用它时,只需要发出“做什么”的命令,“怎么做”是不用使用者考虑的。SQL功能强大、简单易学、使用方便,已经成为了数据库操作的基础,并且现在几乎所有的数据库均支持SQL。 这篇文章主要介绍了详解 Mysql查询结果顺序按 in() 中ID 的顺序排列的相关资料,希望通过本文能帮助到大家,需要的朋友可以参考下详解 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_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查询结果顺序按in()中ID的顺序排列的实例分析的详细内容,更多请关注php中文网其它相关文章!
学习教程快速掌握从入门到精通的SQL知识。
|