首页 > 技术文章 > sql语句开启事务

codeDevotee 2017-08-09 10:42 原文

以下为示例代码:

begin tran
  update 表
     set A的钱=A的钱+100 where 姓名='A'
  update 表
     set B的钱=B的钱-100 where 姓名='B'
if @@error<>0
  rollback
else
  commit

 

推荐阅读