全外连接(sql)

时间:2014-10-18 07:59:59

标签: mysql sql

我有3个表Categorysubcategoryproduct

如何在这些表之间进行完全外连接,但是在版本5.1.69(mysql)

[category.cat_id] => category table l  
[subcategory.subcat_id] => subcategory tab1e 2  
[product.subcat_id] => product table 3

1 个答案:

答案 0 :(得分:0)

将cat_id作为Subcategory表中的外键和subcat_id作为product表中的外键。

这是一个内连接示例:

Select product_name,cat_name,subcat_name 
from Product p,Category c,Subcategory s 
where c.cat_id=s.cat_id and p.subcat_id=s.subcat_id and product_id=121