由于业务需求想根据自定义的ids排序
贴出部分代码 基于mybatis
order by decode (t.id,
<foreach item="id" index="index" collection="ids"
separator=",">
#{id},#{index}
</foreach>
);
这种效果
SELECT t.id FROM T t ORDER BY decode(t.id, '值1', 1, '值2', 2);
按照传入的ids顺序排序