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;