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

SQL 事务

时间:2014-12-07 16:27:12      阅读:222      评论:0      收藏:0      [点我收藏+]

标签:style   color   sp   数据   bs   nbsp   sql   br   rom   


/*========================事务==============================*/
begin tran--开始事务
  --开始写流程语句
  --语句写完之后
if @@ERROR>0
rollback tran --回滚事务
else
commit tran--提交事务

 

-------------练习

 begin tran
 delete from Score where Sno=109
 delete from Student where Sno=105
 if @@ERROR>0
 begin
  rollback tran
 end
 else
 begin
  commit tran
 end
 select *from Score where109
 select *from Student


 
事务:保证数据的一致性

SQL 事务

标签:style   color   sp   数据   bs   nbsp   sql   br   rom   

原文地址:http://www.cnblogs.com/2041388565m/p/4149500.html

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