0
我創建了一個列表product_id
和total_count
的庫存表。當在採購表中輸入採購時(purchase_id
,supplier_id
,product_id
,price, quantity
),它應更新庫存表中的total_count。庫存表中total_count的默認值爲0.觸發器通過在另一個表中添加計數/數量來更新一個表中的Total_count列
例如,當進行採購(供應商,充電器,價格,25)時,應更新庫存(充電器,25)。
我無法做到這一點。這裏是我的代碼:
create or replace trigger trg_update_inventory
after insert on supplier_product
for each row
begin
update inventory set total_count=total_count+ quantity where .....
我停留在這一點上。我如何讓觸發器從購買表中獲取數量並更新總餘額?