0
我有2個表,orderlist和產品:表連接在MySQL QUERY
orderlist
ORDER_ID
PRODUCT_ID
product_quantity_available
產品
PRODUCT_ID
product_qty_available
我想加入這兩個表orderlist.product_quantity_available
和product.product_qty_available
這裏是我下面的代碼:
$query= mysql_query("
SELECT product.product_qty_available,order.product_quantity_available
FROM product
INNER JOIN orderlist
ON product.product_qty_available=orderlist.product_quantity_available
");
問題是? – 2014-10-10 00:44:40
你爲什麼不在'JOIN'上使用'product_id'? – imtheman 2014-10-10 00:46:14
這真的看起來更可能是你想加入產品ID ... – TML 2014-10-10 00:46:24