分享我個人ORACLE SQL語法學習經驗
SAVEPOINT savepoint_name;
savepoint_name:設定保存點名稱
修改emp表格資料,之後設定保存點名稱為sp
update emp set salary=1;
savepoint sp;