了解Oracle存储过程

时间:2013-09-11 03:09:48

标签: sql oracle stored-procedures

我在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时,有人可以指导我。

1 个答案:

答案 0 :(得分:3)

因此,使用AS和IS存储过程

之间没有区别