我有两个表,一个是产品,另一个是客户的外键。另一个是具有产品ID和客户fk的监视列表。
如何从产品表中循环产品信息,其中fk与监视列表中的会话ID匹配?
我的想法是空白的,谷歌没有帮助!
非常感谢。
答案 0 :(得分:2)
示例表:
Products
--------
id (PK)
name
price
description
Customers
---------
id (PK)
firstName
lastName
email
phone
WatchList
---------
customerID (FK)
itemID (FK)
获取客户观察名单:
SELECT Products.name, Customers.email
FROM WatchList
JOIN Customers ON WatchList.customerID = Customers.ID
JOIN Products ON WatchList.itemID = Products.ID
WHERE Customers.ID = <insert customer id here>