标签: php mysql sql
$results = $mysqli->query("SELECT product_name,price FROM herbs an WHERE product_code='$product_code' LIMIT 1"); $obj = $results->fetch_object();
这是我的代码我想从数据库中获取两个表格,即“草药”和“水果”并更新我的购物车。
如何从两个独立的表中选择两个表product_name,价格?
答案 0 :(得分:0)
听起来您想使用inner join或outer join。
inner join
outer join
http://en.wikipedia.org/wiki/Join_(SQL)
或者可能是union:
union
http://en.wikipedia.org/wiki/Union_(SQL)#UNION_operator