首页 > 代码库 > T-SQL事务回滚

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

T-SQL事务回滚