发布网友 发布时间:2022-04-19 23:59
共2个回答
热心网友 时间:2022-05-18 17:37
if
某变量
<>
1
then
处理;
end
if;
这样写试一下,看看是否好用。
热心网友 时间:2022-05-18 17:37
oracle储存过程中,if条件为某变量不等于1,怎么写
oracle存储过程中的if条件判断的写法:
比如:
temp
varchar2(10)
:=
'10000';
if
temp
<>
'10000'
then
insert
into
...
else
update
.......
end
if;