I’m making a web application to make customers order items for anything. For that I’ve made a MySQL database which has the following tables:
customersordersorders-itemsproducts
In the customers table is all the information about the person such as:
- The customer ID, for the primary key and auto increment (id)
- The first name (first_name)
- The last name (last_name)
- The email address (email_address)
- Information about the customer (customer_info)
Example:

In the orders table is all the specific information about it such as:
- The order ID, for the primary key and auto increment (id)
- Which customer it ordered, linked with
idfield from thecustomerstable (customer_id) - Order information (order_info)
- The location where the order needs to go to (location)
- The total price the customer has to pay (total_price)
- When the order was created (created)
Example:

In the orders-items table are all the items which every customer ordered, this is being linked by the order-id from the previous table.
- The ID, for primary key and auto increment, not used for any relation (id)
- The order ID, used for which product is for which order. This is linked with the
idfield from theorderstable (order_id) - The product ID, this is used for what product they ordered, this is linked with the id field from the
productstable. (product_id) - The amount of this product they ordered (quantity)
Example:

In the products table is all the information about the products:
- The ID, for primary key and auto incrementing, This is linked with the
product_idfield from theorder_itemstable (id) - The name of the product (name)
- The description of the product (description)
- The price of the product (price)
Example:

Question:
I’ve got this query:
SELECT `orders-items`.`order_id` , SUM(`orders-items`.`quantity`* `products`.`price`) total FROM `orders-items` INNER JOIN `Products` ON `orders-items`.`products_id` = `products`.`id`
And it shows me a list of all the total prices every order_id has to pay.
But how do I make this so that this value of the total_price every order_id has to pay is automatticly inserted into the orders table inside the total_price field at the right order_id when inserting a product into my orders-list table?
Or is it still better to not keep track of the total_prices the customers have to pay?
Advertisement
Answer
A couple things to consider.
Having a total_price for itself is redundant. You can learn this total by summing the prices of this order’s items at any time. It might be interesting to have it for performance reasons, but is this really necessary for your scenario? It rarely is.
Having a price on each order_item in the other hand would be useful. And the why is because thoses products prices might change in the future and you don’t want to lose information of for how much they were sold at the time of that particular sale.
In any case, you can update your total_price using triggers like this:
DELIMITER $$
CREATE TRIGGER order_items_insert AFTER INSERT ON `orders-items` FOR EACH ROW
BEGIN
UPDATE orders o INNER JOIN (SELECT i.order_id id, SUM(i.quantity * p.price) total_price FROM `orders-items` i INNER JOIN products p ON p.id = i.products_id AND i.order_id = new.order_id) t ON t.id = o.id SET o.total_price = t.total_price;
END$$
CREATE TRIGGER order_items_update AFTER UPDATE ON `orders-items` FOR EACH ROW
BEGIN
UPDATE orders o INNER JOIN (SELECT i.order_id id, SUM(i.quantity * p.price) total_price FROM `orders-items` i INNER JOIN products p ON p.id = i.products_id AND i.order_id = new.order_id) t ON t.id = o.id SET o.total_price = t.total_price;
END$$
CREATE TRIGGER order_items_delete AFTER DELETE ON `orders-items` FOR EACH ROW
BEGIN
UPDATE orders o INNER JOIN (SELECT i.order_id id, SUM(i.quantity * p.price) total_price FROM `orders-items` i INNER JOIN products p ON p.id = i.products_id AND i.order_id = old.order_id) t ON t.id = o.id SET o.total_price = t.total_price;
END$$
DELIMITER ;