码迷,mamicode.com
首页 > 数据库 > 详细

SQL Server 简单事务学习

时间:2014-10-30 22:24:29      阅读:309      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   ar   sp   div   on   log   bs   

select * from bank
insert into bank values(10000)
insert into bank values(20000)

--打开一个事务
begin tran
--定义临时变量
declare @num int = 0;
update bank set balance=balance-15000 where Id=1
set @num = @num + @@error; --上一条语句出错次数
update bank set balance=balance+15000 where Id=2
set @num = @num + @@error;
if @num <> 0 begin
--回滚事务
rollback tran
end
else  begin
--提交事务
commit tran
end

 

SQL Server 简单事务学习

标签:style   blog   color   ar   sp   div   on   log   bs   

原文地址:http://www.cnblogs.com/han1982/p/4063734.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!