MySQL查询结果按where in数组排序
在查询中,MySQL默认是order by id asc排序的,但有时候需要按照where in 的数组顺序排序,比如where in的id查询数组为[922,106,104,103],正常情况查询出来的结果顺序为[103,104,106,922],这可能不是我们想要的结果,我们期望查出来的结果顺序与where in的顺序一致,这里介绍两个方式:
- 使用find_in_set函数:
select * from table where id in (922,106,104,103) order by find_in_set(id,'922,106,104,103');
- 使用order by field
select * from table where id in (922,106,104,103) order by field(id,922,106,104,103);