You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
253 B
20 lines
253 B
3 years ago
|
USE Study
|
||
|
|
||
|
GO
|
||
|
BEGIN TRAN
|
||
|
|
||
|
DELETE FROM DEPT01 WHERE DNO = 10
|
||
|
SELECT * FROM DEPT01
|
||
|
|
||
|
INSERT INTO DEPT01 VALUES (NULL, 'ERROR_PRODUCT', 'seoul')
|
||
|
|
||
|
IF @@ERROR <> 0 GOTO ERROR_ROLLBACK
|
||
|
|
||
|
COMMIT TRAN
|
||
|
RETURN
|
||
|
|
||
|
ERROR_ROLLBACK:
|
||
|
ROLLBACK TRAN
|
||
|
|
||
|
GO
|
||
|
SELECT * FROM DEPT01
|