我正在尝试从基于另一个表的两个表中提取数据。
所以..我有这些表:
**tblCategory**
CategoryID, CategoryName
**tblProdCat**
prodCatID, productID, categoryID
**tblProducts**
productID, description, price
我需要加入表格并从 tblProdCat 和 tblProducts 中找到信息,而我只能使用 CategoryName。
SELECT tblProducts.name,
tblProducts.description,
tblProducts.price,
tblProducts.qtyInStock,
tblProducts.image,
tblProducts.colour,
tblProducts.size,
tblProducts.style,
tblProdCat.prodCatID
FROM
tblProducts, tblProdCat,tblCategory
WHERE tblCategory.categoryName='Pens'
AND tblProdCat.categoryID = tblProducts.categoryID
我已经尝试了上述方法,还尝试了其他连接,但将我的头发拉了出来。我读过教程,只是不明白连接是如何工作的。有人可以帮忙吗?请..