oracle 主函数循环调用子函数

2025-03-23 02:41:36
推荐回答(1个)
回答1:

可以用 savepoint设置回滚点试试,比如:

SAVEPOINT abcd;

insert into tab1 xxx;
ROLLBACK TO abcd;