sql语句开启事务

以下为示例代码:

begin tran
  update 表
     set A的钱=A的钱+100 where 姓名='A'
  update 表
     set B的钱=B的钱-100 where 姓名='B'
if @@error<>0
  rollback
else
  commit
原文地址:https://www.cnblogs.com/codeDevotee/p/7323966.html