- 直接上个验证代码
create or replace procedure sp_test
is
v_count number;
begin
select 1
into v_count
from dual
where 1 != 1;
end<
create or replace procedure sp_test
is
v_count number;
begin
select 1
into v_count
from dual
where 1 != 1;
end<