我有2个产品表,我需要做的是,根据产品的属性获取产品的名称和描述,即如果table1的产品属性1与table2'相同。 s product attribute1然后获取表的产品名称和描述。我的诉讼与查询混淆,有人可以帮忙。 这是我的疑问:
select Product_Article_Number, Product_Description, Comments,
from P_Products as pp
WHERE EXISTS(select * from Competitor_Products as cc
WHERE(cc.CAttribute1 = pp.Attribute1
AND cc.CAttribute2 = pp.Attribute2
AND cc.CAttribute3 = pp.Attribute3
AND cc.CAttribute4 = pp.Attribute4))
结果: 通过这个我只获取table1的详细信息,如何获得其他表格细节。