前几日写存储过程,使用嵌套if语句的时候,碰到一个奇怪的问题,多方找原因无果。后发现是一个很sb的问题。。。
if condition1 then
if condition1.1 then
do something1.1;
else if condition1.2 then
do something1.2;
else -- 报错的地方
do something1.3;
endif;
else
do something2.2;
endif;
如上,else那里一直在报错。
使用了排除法,把else那块去掉,仍报错。
整个中间的if那段去掉,编译成功。
else if和else去掉,编译成功。
else if去掉,编译成功。
好吧,else if的问题。elseif应该是没有空格的!!!
排除法是个好方法,细心是个好习惯😂😂😂。。。