代码中的group_concat如果需要按传入的list进行排序返回的话,

语句应该如下

SELECT
group_concat(CASE when t.FCUSTOMIZE > 0 then CONCAT(t.fnamepath,'( 自定义)') ELSE t.FNAMEPATH END order by field (fid, <foreach collection="list" separator="," item="item" close=")" index="index">
#{item}
</foreach> SEPARATOR ', ' )
FROM
tknowledgepoint t
WHERE
t.fid in <foreach collection="list" open="(" index="index" close=")" item="item" separator=",">
#{item}
</foreach>
order by field(fid, <foreach collection="list" separator="," item="item" close=")" index="index">
#{item}
</foreach>

concat中的语句/条件请自行替换
主要原因
mysql 的in 查询 返回无序,按照表中的全表查询,group_concat返回又是无序,于是如果要按照传入参数去返回,那么就要加上order by field(id,1,2,3,4)

相关文章:

  • 2021-09-29
  • 2021-09-04
  • 2021-07-20
  • 2021-06-24
  • 2021-07-02
  • 2022-01-26
  • 2022-12-23
  • 2021-08-09
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-08-06
  • 2022-12-23
  • 2021-09-10
相关资源
相似解决方案