当前位置:Gxlcms > 数据库问题 > Oracle_事务

Oracle_事务

时间:2021-07-01 10:21:17 帮助过:16人阅读

-事物管理   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;     select * from account;  
   

Oracle_事务

标签:span   money   div   from   --   position   container   ext   rom   

人气教程排行