我尝试根据第二个表的寄存器从一个表中进行选择
我使用 4 张桌子
table Products
Product_Id | Product_Name | Product_Value | Category_Id
1 | Ball | 10 | 1
2 | Pen | 2 | 2
3 | Eraser | 1 | 1
table Categories
Category_Id | Category_Name
1 | Acessories
2 | Others
table Customers
Customer_Id | Customer_Name
1 | John
2 | Peter
table Sells
Sell_Id | Product_Id | Customer_Id | Sell_Date
1 | 1 | 1 | 2012-01-01
2 | 2 | 1 | 2012-01-02
所以我想做出一个选择来展示客户历史上他买的东西
像
约翰历史
Product Name Category Name Date
Ball Accessories 2012-01-01
Pen Others 2012-010
在最后我显示信息表格 3 个不同的表格
我尝试使用 INNER JOIN 和 LEFT JOIN 但没有成功。
谢谢你的帮助。