📅  最后修改于: 2022-03-11 15:05:21.986000             🧑  作者: Mango
start transaction;
savepoint sp1;
delete from customer where ID=1;
savepoint sp2;
delete from customer where ID=2;
rollback to sp2;
rollback to sp1;