Changes between Version 4 and Version 5 of WikiStart/Optimization/vtora_verzija
- Timestamp:
- 04/01/25 22:05:47 (3 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
WikiStart/Optimization/vtora_verzija
v4 v5 71 71 72 72 if new.type = 'Deposit' then 73 insert into Deposit(account_id, transaction_id, amount)74 values (new.account_id, new. transaction_id, new.amount);73 insert into Deposit(account_id, id, amount) 74 values (new.account_id, new.id, new.amount); 75 75 76 76 elsif new.type = 'Withdrawal' then 77 insert into Deposit(account_id, transaction_id, amount)78 values (new.account_id, new. transaction_id, new.amount);77 insert into Deposit(account_id, id, amount) 78 values (new.account_id, new.id, new.amount); 79 79 80 80 elsif new.type like '(MKD) Transfer Out to%' then