标签: stored-procedures plsql
我在定义程序时一直使用AS,直到遇到IS。
AS
IS
create or replace procedure myproc (cnum in customer.custno%type) is --here v_name char(20); v_phone char(10); begin ...... end myproc;
在什么情况下我应该使用is代替as?
is
as
答案 0 :(得分:2)
他们是一样的。
函数体以关键字IS(或AS)开头,以#结尾 关键字END后跟可选的函数名称
请参阅here以获取参考。