oracleplsqlif
发布时间: 2023-01-06 17:42:36
A. oracle储存过程中,if条件为某变量不等于1,怎么写
oracle存储过程中的if条件判断的写法:
比如:
temp varchar2(10) := '10000';
if temp <> '10000' then
insert into ...
else
update .......
end if;
热点内容
A. oracle储存过程中,if条件为某变量不等于1,怎么写
oracle存储过程中的if条件判断的写法:
比如:
temp varchar2(10) := '10000';
if temp <> '10000' then
insert into ...
else
update .......
end if;