T-SQL事务回滚

begin transaction --开始事务
 
rollback transaction --回滚事务
commit transaction --提交事务

alter proc aaa
as
begin transaction
insert into stu(STU_NAME,STU_SEX) values(‘aa‘,‘男‘)
if @@rowcount=0 or @@error<>0  --受影响的行数=0或者有错误代码
begin
 rollback transaction   -- 回滚事务(不会向数据库插入语句)
end
else
begin
 commit transaction -- 提交事务
end

 

本文出自 “程序猿的家--Hunter” 博客,请务必保留此出处http://962410314.blog.51cto.com/7563109/1572043

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。