我需要知道哪个表充当中介来实现这些实体之间的多对多关系。
我知道存储产品的表格是vtiger_products
,而保留引号的表格是vtiger_quotes
,但我不知道哪个表格都相关,所以我的查询不完整。
因此...
SELECT * FROM vtiger_quotes
INNER JOIN vtiger_products INNER JOIN table_relates_both
ON vtiger_quotes.quoteid = table_relates_both.quoteid
AND vtiger_products.productid = table_relates_both.productid
WHERE vtiger_quotes.potentialid = ?
table_relates_both
的真实姓名是什么?
答案 0 :(得分:2)
表名是vtiger_inventoryproductrel