mysql通过find_in_set()函数实现where in()顺序排序
(编辑:jimmy 日期: 2024/11/16 浏览:3 次 )
本文章来为各位介绍一篇关于mysql 实现按 where in () 中的顺序排序,用find_in_set() 函数的教程,希望此教程能够对各位有所帮助。
select * from table where id in ('783',' 769',' 814',' 1577',' 1769') order by find_in_set( id, '783, 769, 814, 1577, 1769' )
查出来:
769 1577 814 1769 783
为什么不是 783 769 814 1577 1769 的顺序"htmlcode">
select * from table where id in ('783',' 769',' 814',' 1577',' 1769') order by find_in_set( id, '783,769,814,1577,1769' )
注意只是去掉了
'783,769,814,1577,1769' 中的空格
再查出来: 783 769 814 1577 1769
至此我们实现用where in find_in_set 的排序,find_in_set 还可实现多条件排序 试试哦
总结
以上就是本文关于mysql通过find_in_set()函数实现where in()顺序排序的全部介绍,感兴趣的朋友可以参阅:MySQL数据库表分区注意事项大全【推荐】、几个比较重要的MySQL变量、sql和MySQL的语句执行顺序分析等,若有不足之处,欢迎大家留言指正。希望对大家有所帮助。
下一篇:Mysql中FIND_IN_SET()和IN区别简析