存储过程语句
create or replace procedure Test(x in out number)
is
begin
if x<0 then
begin
x:= 0 - x;
end;
elsif x > 0 then
begin
x:= x ;
end;
else
x:= 0;
end if;
end Test;
存储过程
一定要选在
设置断点
点击调试