2 番目のテーブルの登録に基づいて、1 つのテーブルから選択しようとしています
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 を使用してみましたが、成功しませんでした。
助けてくれてありがとう。