Add trigger to automatically calculate subtotal price of cart

This commit is contained in:
Thastertyn 2024-03-07 22:40:30 +01:00
parent 11491a0e43
commit 633955d95f

View File

@ -130,4 +130,18 @@ begin
where id = old.cart_id;
end;
//
delimiter;
delimiter;
delimiter //
create trigger calculate_price_subtotal
before insert on cart_item
for each row
begin
set new.price_subtotal = (
select new.count * p.price_pc
from product p
where p.id = new.product_id
);
END;
//
DELIMITER ;