This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
LAB 4 number 1. | |
CREATE OR REPLACE PROCEDURE ADDinterest11(abranchName VARCHAR,interest DECIMAL)AS | |
BEGIN | |
UPDATE Deposit SET balance=balance+(balance*interest) | |
WHERE branchName=abranchName; | |
END; | |
/ | |