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.
16 lines
238 B
16 lines
238 B
3 years ago
|
USE Study
|
||
|
|
||
|
GO
|
||
|
BEGIN TRAN
|
||
|
|
||
|
DELETE FROM DEPT01 WHERE DNO = 10
|
||
|
SAVE TRAN svpoint1
|
||
|
|
||
|
INSERT INTO DEPT01 VALUES (50, 'PRODUCT', 'Seoul')
|
||
|
ROLLBACK TRAN svpoint1
|
||
|
|
||
|
INSERT INTO DEPT01 VALUES (60, 'DESIGN', 'Jeju')
|
||
|
|
||
|
COMMIT TRAN
|
||
|
|
||
|
SELECT * FROM DEPT01
|