SQL如何定义@error,那么每次执行语句以后 @error = @@error 这样写不对么,那该怎么写

RT
2025-01-05 01:47:38
推荐回答(1个)
回答1:

declare @error as int
set @error=@@error
if @error >0 Goto ERROR

ERROR:
Begin

End