0

我对mysql查询没有什么问题。我需要 GROUP_CONCAT 中的 GROUP_CONCAT 之类的东西。看:

数据库设计:

在此处输入图像描述

SELECT cid, country, capital,
    GROUP_CONCAT(DISTINCT mid, '=',city SEPARATOR '|*|') AS data
FROM t1
    INNER JOIN t2 ON t2.c_id = t1.cid
    INNER JOIN t3 ON t2.c_id = t3.mid
WHERE t1.cid =1

返回

[cid] => 1
[country] => France
[capital] => Paris
[data] => 1=Lyon|*|2=Chartres|*|3=Valence

但我想加入这个查询表 t4(我不知道怎么做),如果输出看起来像这样就好了

[cid] => 1
[country] => France
[capital] => Paris
[data] => 1=Lyon=|*|2=Chartres=Max#Alex#Frank|*|3=Valence=John

附言。t4.m_id = t3.mid

4

3 回答 3

1

我不完全确定您为什么要在 SQL 中执行此操作,但这里有一个返回所需结果的版本:

SELECT  t1.cid,
  t1.country,
  t1.capital,
  GROUP_CONCAT(DISTINCT t34.mid,"=", t34.city, "=", t34.names ORDER BY t34.mid SEPARATOR "|*|" )AS data
FROM table1 t1
INNER JOIN table2 t2 
  ON t1.cid = t2.c_id
LEFT JOIN
(
  select t3.mid, t3.city,
    Coalesce(GROUP_CONCAT(DISTINCT t4.names SEPARATOR "#"), '') names
  from table3 t3
  left join table4 t4
    on t3.mid= t4.m_id
  group by t3.mid, t3.city
) t34
  ON t2.city_id = t34.mid
where t1.cid = 1
group by t1.cid, t1.country

请参阅带有演示的 SQL Fiddle

结果:

| CID | COUNTRY | CAPITAL |                                                DATA |
---------------------------------------------------------------------------------
|   1 |  France |   Paris | 1=Lyon=|*|2=Chartes=Max#Alex#Frank|*|3=Valence=John |
于 2012-11-20T23:31:20.867 回答
0

您的数据模型非常混乱......我的意思是t2.city_id = t3s.mid......认真吗?

无论如何,这是一个解决方案:

SELECT cid, country, capital, GROUP_CONCAT(city_list SEPARATOR "|*|") AS data
FROM (
  SELECT mid, CONCAT(mid, "=", city, "=", COALESCE(names_list, "")) AS city_list
  FROM (
    SELECT m_id, GROUP_CONCAT(names SEPARATOR '#') AS names_list
    FROM t4
    GROUP BY m_id
  ) AS t4s
  RIGHT JOIN t3 ON t3.mid = t4s.m_id
) AS t3s
JOIN t2 ON t2.city_id = t3s.mid
JOIN t1 ON t1.cid = t2.c_id
GROUP BY cid

结果:

| CID | COUNTRY | CAPITAL |                                                 DATA |
----------------------------------------------------------------------------------
|   1 |  France |   Paris | 1=Lyon=|*|2=Chartres=Max#Alex#Frank|*|3=Valence=John |

在 SQLfiddle 上查看

于 2012-11-20T23:27:31.667 回答
0

用于测试的SQL Fiddle 。

select distinct cid,country,capital,
group_concat(distinct t3.mid,"=",city, '=', coalesce(names, '') separator "|*|") as data
from t1
inner join t2 on t2.c_id = t1.cid
inner join t3 on t2.city_id = t3.mid
left join (select m_id, group_concat(names separator '#') as names
           from t4
           group by m_id) t5 on t3.mid = t5.m_id
where t1.cid =1;
于 2012-11-20T23:34:56.970 回答