oracle存储过程学习
oracle存储过程中的if...elseif...else用法
IF(...)THEN
...
ELSE IF(...)THEN
...
END IF
正确写法为:
if ... then
...
elsif ... then
...
else
...
end if;
or
if ... then
...
else
...
end if;
or
if ... then
...
end if;
IF(...)THEN
...
ELSE IF(...)THEN
...
END IF
正确写法为:
if ... then
...
elsif ... then
...
else
...
end if;
or
if ... then
...
else
...
end if;
or
if ... then
...
end if;
相关文章: