我有这样的问题:
sp1:
begin trans
  insert a,b,c
  into table1
commit trans为sp1的insert事件创建触发器:
triger1:
exec sp2sp2:
begin trans
  insert m,n
  into table2
commit trans如果sp2执行成功了,而sp1没有成功,sp2应该是不会回滚的,那该怎么办?判断后删除吗?