【发布时间】:2013-06-19 06:04:03
【问题描述】:
我在定义过程时一直使用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?
【问题讨论】:
【讨论】: