MySQL Group_Concat Repeating Values

生来就可爱ヽ(ⅴ<●) 提交于 2019-11-28 11:09:55

You are probably joining a table with two tables on 1..n relationships, producing duplicate results.

  • Use either GROUP_CONCAT( DISTINCT ...) or

  • Use two subqueries: in each one use GROUP_CONCAT() with group by on each of the 2 tables. Then join the two subqueries and the main table.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!