Mysql查询逗号分隔的字段值

时间:2014-03-29 18:44:20

标签: mysql

我有一个表,在三个字段中包含三个不同表的主键的逗号分隔值,例如:

Table A (Main table):
id   title   companyid   countryid   regulatorid
1    tit1     1,2         2,3         2,1
2    tit2     3,1         1,2         1,3
Table B (company)          table c (Country)       table d(regulator)
id   title                    id    title          id      title
1    comp1                     1      country1      1        regul1
2    comp2                     2      country2       2       regulator2
3    comp3                     3      country3      3       regulator

我想得到一个结果:

id        title       company        country                   regulator
1         tit1        comp1,comp2    country2,counrtry3      regulator2,regul1
2        tit2         comp3,comp1    country1,country2        regul1,regulator3

我查询过:

   select id,title,group_concat(table B.title) AS company,group_concat(table c.title) AS 
country,group_concat(table d.title) AS regulator from table A INNER JOIN table b on 
find_in_set(table B.id,table A.companyid) > 0 INNER JOIN table c on find_in_set(table 
c.id,table A.countryid) > 0 INNER JOIN table d on find_in_set(table d.id,table 
A.regulatorid) > 0

我需要更改什么才能获得当前结果?

1 个答案:

答案 0 :(得分:1)

这是一种非常糟糕的数据格式,在回答之前,如果你能控制它,我应该让你保证更改格式。这应该是另外三个单独的关联/联结表。如果您打算使用关系数据库,请正确使用它。

select a.id, a.title, group_concat(distinct b.title), group_concat(distinct c.title),
       group_concat(distinct d.title)
from a left outer join
     b
     on find_in_set(b.id, a.companyid) > 0 left outer join
     c
     on find_in_set(c.id, a.countryid) > 0 left outer join
     d
     on find_in_set(d.id, a.regulatorid) > 0
group by a.id, a.title;

但改变表格布局会更好

相关问题