嗨我需要从数据库中获取数据,但我无法弄清楚它是如何做到的......
他们有"精品店"桌子和" boutiques_categories"和他们之间的关系表名称" boutiques_categories_categories"
这里是如何设置的:
boutiques
id name
1 X_boutiques2_name
2 Y_boutiques_name
Boutique2
id name
1 X_boutiques2_name
2 Y_boutiques2_name
boutiques_categories
id name
1 X_categorie_name
2 Y_categorie_name
boutiques_categories_categories
boutique_id categorie_id
X_boutique_id X_categorie_id
Y_boutique_id Y_categorie_id
我想创建一个SQL来合并和打印数据的CSV,如下所示:
export
boutiques_id boutique_name boutiques_categories_categorie_name
boutiques2_id boutique2_name boutiques_categories_categorie_name
我尝试UNION那两个表
SELECT A.*
FROM boutiques A
UNION select B.* FROM boutiques2 B
它正在工作,但现在我需要加入类别名称,我无法弄清楚如何去做。试过:
SELECT A.*
FROM boutiques A
UNION select B.*
FROM boutiques2 B
left join
boutiques_categories BC ON BC.id =
(
SELECT BCC.categorie_id
FORM
boutiques_categories_categories BCC
WHERE BCC.boutique_id = BC.id
)
但是我得到了MYSQL错误,我无法解决。
#1242 - Subquery returns more than 1 row
感谢您的时间。
答案 0 :(得分:2)
您可以将{或union all
(取决于您想要的数据)boutiques
和Boutique2
合并到一个派生表中,然后通过boutiques_categories_categories将其加入boutiques_categories。
您在问题中包含的表格数据似乎并不完全准确。具体来说:boutiques_categories_categories包含与关联表的id列不匹配的boutique_id和categorie_id值。我将假设boutiques_categories_categories具有int ID值。如果不是这种情况,请在评论中说明,我可以适当调整查询。
尝试此查询,看看它是否返回您期望的数据:
select
b.id, b.name, c.name
from
-- Get the boutiques rows from the unioned tables
(
select id, name from boutiques
union
select id, name from Boutique2
) as b
-- Join in boutiques_cateogires_categories
join boutiques_categories_categories cc
on (b.id=cc.boutique_id)
-- Join in boutiques_categories
join boutiques_categories c
on (cc.categorie_id=c.id)