我想加入以下表格并在页面的表格中显示它们。

表格1
•carID
•car_name
•reg_name
• 价钱

表2
• 用户身份
• 名字
• 姓
• 电子邮件地址
•省
• 地址

表3
•orderID
• 用户身份
•car_ID
•笔记
•日期

我想在php页面上显示所有字段。我只能加入两个表,而不能链接第三个表。

最佳答案

使用Join

SELECT * FROM table3,table2,table1
    WHERE table2.userID=table3.userID AND table1.carID=table3.carID

10-06 07:00