好的,我不确定该如何命名。
我有2张桌子,一张摆放产品,一张摆放商人。
有些产品可以由2个或更多的商人出售。
产品表中有一个名为'product_merchant_id'的列,其中包含1个或多个引用,例如:。'1237,38272,3738'
该ID与“商人”表中“ merchant_id”列中的内容相关。
商家表(商家)
mer_id | merchant_id | merchant_name
-------------------------------------
1 | 1237 | Merchant One
2 | 38272 | Merchant Two
3 | 3738 | Merchant Three
产品表(产品)
product_id | product_merchant_id | product_name
------------------------------------------------------------
1 | 1237, 38272 | Sample Product One
2 | 1237, 3738, 38272 | Sample Product Two
3 | 3728 | Sample Product Three
因此,基本上,如果我要查询product_id 2,我希望能够从商人表中拉出2行,其中商人ID为1237和38272,并将它们循环到我的模板中,就像...
<div>
<p>Merchant Name: Merchant One</p>
<p>Merchant ID: 1237</p>
</div>
<div>
<p>Merchant Name: Merchant Two</p>
<p>Merchant ID: 38272</p>
</div>
最佳答案
解决方案是更改表结构。删除“产品”表中的“ product_merchant_id
”列,然后创建一个名为“ product_merchants
”的新表,该表具有两列:product_id
和merchant_id
。它看起来像:
product_id | merchant_id
--------------------------
1 | 1237
1 | 38272
2 | 1237
2 | 2728
2 | 38272
3 | 3738
现在,您可以使用联接来获取所需的所有信息。这样的事情应该起作用:
SELECT m.merchant_name, m.merchant_id
FROM merchants m
JOIN product_merchants mp ON m.merchant_id = mp.merchant_id
AND mp.product_id = 2
See demo