mysql指定ID排序,MySQL 按指定字段自定义列表排序,MySql查询结果排序
方法一、
[php]
select * from table1 order by instr('1,4,5,7,2',id)
[/php]
方法二、
[php]
select * from test where id in(3,1,5) order by find_in_set(id,'3,1,5');
[/php]
方法三、
[php]
select * from test where id in(3,1,5) order by substring_index('3,1,2',id,1);
[/php]
方法四、
[php]
select * from a where id in(8,11,3) order by field(id,8,11,3);
[/php]
大家都知道, MySQL 中按某字段升序排列的 SQL 为 (以 id 为例, 下同):
SELECT * F...