Add trigger to automatically calculate subtotal price of cart
This commit is contained in:
parent
11491a0e43
commit
633955d95f
14
shop.sql
14
shop.sql
@ -131,3 +131,17 @@ begin
|
|||||||
end;
|
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 ;
|
Loading…
x
Reference in New Issue
Block a user