事务:
起一个保障作用。
begin tran ----------------------------事务的开始
----流程语句
delete from score where sno=103
If @@error>0
Begin
Goto tranrollback-----------------去目的地
end
delete from student where sno=101
---语句写完后
if @@ERROR>0
begin
Rollback tran----------------------回滚事务
end
else
begin
commit tran------------------------提交事务
end
TranRollBack:rollback tran----------目的地