Oracle_事务
Posted 日月的弯刀
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Oracle_事务相关的知识,希望对你有一定的参考价值。
Oracle_事务
-事物管理
create table account(
id number,
money number
);
--实现转账操作
update account set money = money - 100 where id = 2;
update account set money = money + 100 where id = 1;
--事务提交
commit;
--事务回滚
rollback;
|
以上是关于Oracle_事务的主要内容,如果未能解决你的问题,请参考以下文章