一直糾結於儲存過程的is與as最近在網上查了巨多資料,總結如下:
在儲存過程(procedure)和函式(function)中沒有區別;
在檢視(view)中只能用as不能用is;
在游標(cursor)中只能用is不能用as。
從其定義也可以看出沒什麼區別,要是有估計暫時也很少有人發下:
create [or replace] procedure procedure_name
[(parameter_name [in | out | in out] type [,........])]
begin
procedure_body
end procedure_name;
oracle儲存過程中return和exit區別
create or replace procedure test5 o cellphone in varchar2 is v cellphone cc quiz stat.cellphone type v name cc quiz stat rowtype v state cc quiz stat....
oracle儲存過程中return和exit區別
oracle儲存過程中return和exit區別 create or replace procedure test5 o cellphone in varchar2 is v cellphone cc quiz stat.cellphone type v name cc quiz stat rowt...
oracle儲存過程中陣列申明和遍歷
create or replace procedure test as 申明陣列型別 type t test is table of varchar2 9 test t test t test a b c d e f g h j k l begin 遍歷陣列,將遍歷得到的資料插入到aa表中 for ...