我在oracle中看到了编写过程的语法,如下所示
PROCEDURE name [ ( parameter_list ) ]
{ IS | AS }
[ declarative_part ]
BEGIN -- executable part begins
statement; [ statement; ]...
[ EXCEPTION -- executable part ends, exception-handling part begins]
exception_handler; [ exception_handler; ]... ]
END;
当我应该使用AS和IS时,有人可以指导我。
答案 0 :(得分:3)
因此,使用AS和IS存储过程
之间没有区别