oracle中else语句还能在嵌套if语句吗

2024-12-12 14:12:17
推荐回答(2个)
回答1:

你是写存储过程还是单独的sql语句,存储过程是可以的,sql语句里面就不能有if

回答2:

可以的。如
if() then
...
else if() then
...
else
//嵌套的if
if() then
...
end if;
end if