group_concat 的坑(需要排序)


代码中的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)


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM