oracle存储过程中is和as区别
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了oracle存储过程中is和as区别相关的知识,希望对你有一定的参考价值。
语法:
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区别的主要内容,如果未能解决你的问题,请参考以下文章