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