当前位置:Gxlcms > 数据库问题 > oracle存储过程中is和as区别

oracle存储过程中is和as区别

时间:2021-07-01 10:21:17 帮助过:3人阅读

create [or replace] procedure procedure_name
 [(parameter_name [in | out | in out] type [,........])]
  {is | as}
begin
 procedure_body
end procedure_name;

在存储过程(PROCEDURE)和函数(FUNCTION)中没有区别;
在视图(VIEW)中只能用AS不能用IS;
在游标(CURSOR)中只能用IS不能用AS。

oracle存储过程中is和as区别

标签:

人气教程排行