begin
select
*
from emp as t1 , dept t2
where t1.COMM is not null
exception
when others do
RAISE_APPLICATION_ERROR(-20601,'过程出错,出错记录'||相关的记录信息||Sqlerrm);
end ;
定位SQL出错位置
最新推荐文章于 2022-02-25 09:12:55 发布
begin
select
*
from emp as t1 , dept t2
where t1.COMM is not null
exception
when others do
RAISE_APPLICATION_ERROR(-20601,'过程出错,出错记录'||相关的记录信息||Sqlerrm);
end ;
273
4645
241

被折叠的 条评论
为什么被折叠?