繁体   English   中英

如何在sql中使用group concat连接三个表

[英]How to join three tables with group concat in sql

我正在尝试使用group concat连接三个表.Problem是主表以json格式加入列。

查询正在运行,但一次又一次地重复加入列数据查询 - >

[SELECT tour_package.description AS description, 
         tour_package.NAME AS NAME, 
         GROUP_CONCAT( destination_continent.NAME ) AS continent_name,
         GROUP_CONCAT( travel_style.NAME ) AS travel_style_name,
         tour_package.id AS id, 
         tour_package.img_path_thumb AS img_path_thumb, 
         tour_package.continent_id, 
         tour_package.travel_style_id
FROM tour_package
LEFT JOIN destination_continent ON 
      FIND_IN_SET( destination_continent.id, 
           REPLACE( REPLACE( REPLACE( tour_package.continent_id,  '\[',  '' ) ,  '\]',  '' ) ,  '\"',  '' ) ) 
LEFT JOIN travel_style ON 
      FIND_IN_SET( travel_style.id, 
           REPLACE( REPLACE( REPLACE( tour_package.travel_style_id,  '\[',  '' ) ,  '\]',  '' ) ,  '\"',  '' ) ) 
WHERE  `tour_package`.`DELETE` = 0 &&  `destination_continent`.`DELETE` = 0
LIMIT 0 , 30][1]

表 - > 此搜索

图像2

图像3

在GROUP_CONCAT函数中使用DISTINCT关键字

即:

SELECT tour_package.description AS description, 
       tour_package.NAME AS NAME, 
       GROUP_CONCAT(DISTINCT destination_continent.NAME ) AS continent_name,
       GROUP_CONCAT(DISTINCT travel_style.NAME ) AS travel_style_name,
       tour_package.id AS id, 
       tour_package.img_path_thumb AS img_path_thumb, 
       tour_package.continent_id, 
       tour_package.travel_style_id
.... 

Group Concatenating进行Distinct检查

[SELECT tour_package.description AS description, tour_package.NAME AS NAME, GROUP_CONCAT( DISTINCT(destination_continent.NAME) ) AS continent_name, GROUP_CONCAT( DISTINCT(travel_style.NAME) ) AS travel_style_name, tour_package.id AS id, tour_package.img_path_thumb AS img_path_thumb, tour_package.continent_id, tour_package.travel_style_id FROM tour_package LEFT JOIN destination_continent ON FIND_IN_SET( destination_continent.id, REPLACE( REPLACE( REPLACE( tour_package.continent_id,  '\[',  '' ) ,  '\]',  '' ) ,  '\"',  '' ) )  LEFT JOIN travel_style ON FIND_IN_SET( travel_style.id, REPLACE( REPLACE( REPLACE( tour_package.travel_style_id,  '\[',  '' ) ,  '\]',  '' ) ,  '\"',  '' ) )  WHERE  `tour_package`.`DELETE` =0 &&  `destination_continent`.`DELETE` =0 LIMIT 0 , 30][1]

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM