これが私がやろうとしていることです。ある人がランプを購入するproduct_quantity
と、1つ上がります。別の人が同じ製品を購入しますが、「product_quantity」は3です。したがって、合計すると4になります。
これは私のコードです:
// build SQL statement to select how many quantities of that product.
$query = "select product_quantity from table where order_item_name = '$ordername' and order_id='$orderid'";
// execute SQL statement
$result = mysqli_query($link, $query) or die(mysqli_error($link));
// shows how many quantity of that product
while($row= mysqli-fetch_assoc($result)){
$lol = $row['product_quantity']
}
しかし、SQLを使用してこの番号をテーブル内の既存の番号に追加するにはどうすればよいですか?たとえば、このテーブルには、:10というフィールドがあります。同じ製品total_order
の既存の:10に新しい注文:数量1と3を追加して、 14にします。total_order