67,549
社区成员




update account set money = money - 100 where id = 1;
update account set money = money - 100 where id = 2;
commit;
update account set money = money - 100 where id = 1;
commit;
--出现异常,后面代码不执行
update account set money = money - 100 where id = 2;
commit;