存储过程好像没有限制不能使用else,只要满足PL/SQL语法就好了。
可以
if xxx then ... elsif xxx then ... else ... end if;
declarebegin if 1=1 then null; else null; end if;end;