我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
?
我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
?