प्रक्रिया की शुरुआत में राशि के लिए एक चेक जोड़ा, और insert into transfers
. ले जाया गया update
. से पहले बयान। transfers
में विदेशी कुंजियां होती हैं तालिका संदर्भ account
तालिका, इसलिए यदि आप id
. डालने का प्रयास करते हैं जो मौजूद नहीं है वह तुरंत विफल हो जाएगा।
delimiter //
create procedure transfer (amount int, note varchar(50), sending_account
int, receiving_account int)
this_proc:begin
start transaction;
if amount <= 0 then
leave this_proc;
end if;
insert into Transfers values
(TransfersID, amount, sending_account, receiving_account, note, now());
update Account as A
set A.amount = A.amount - amount
where A.AccountID = sending_account;
update Account as A
set A.amount = A.amount + amount
where A.AccountID = receiving_account;
commit work;
end //
delimiter ;