Oracle陣列入門

2021-05-22 11:42:22 字數 3627 閱讀 5782

oracle陣列一般可以分為固定陣列和可變陣列

固定陣列

sql**

declare 

type v_ar is varray(10) of varchar2(30); 

my_ar v_ar:=v_ar('g','m','d','龔','帥'); 

begin 

for i in 1..my_ar.count 

loop 

dbms_output.put_line(my_ar(i)); 

end loop; 

end; 

declare

type v_ar is varray(10) of varchar2(30);

my_ar v_ar:=v_ar('g','m','d','龔','帥');

begin

for i in 1..my_ar.count

loop

dbms_output.put_line(my_ar(i));

end loop;

end;

可變陣列

一維陣列

sql**

declare 

type v_table is table of varchar2(30) index by binary_integer; 

--型別可以是前面的型別定義,index by binary_integer子句代表以符號整數為索引, 

--這樣訪問表型別變數中的資料方法就是「表變數名(索引符號整數)」。 

my_table v_table; 

begin 

for i in 1..20 

loop 

my_table(i):=i; 

dbms_output.put_line(my_table(i)); 

end loop; 

end; 

declare

type v_table is table of varchar2(30) index by binary_integer;

--型別可以是前面的型別定義,index by binary_integer子句代表以符號整數為索引,

--這樣訪問表型別變數中的資料方法就是「表變數名(索引符號整數)」。

my_table v_table;

begin

for i in 1..20

loop

my_table(i):=i;

dbms_output.put_line(my_table(i));

end loop;

end;

多維陣列--多條記錄

sql**

declare 

type v_table is table of t_user%rowtype index by binary_integer; 

my_table v_table; 

begin 

select * bulk collect into my_table from t_user; 

for i in 1..my_table.count/10 --my_table.count/10 取到的值為四捨五入值 

loop 

dbms_output.put_line('suser--'||my_table(i).suser); 

dbms_output.put_line('name---'||my_table(i).name); 

dbms_output.put_line('***----'||my_table(i).***); 

end loop; 

end; 

declare

type v_table is table of t_user%rowtype index by binary_integer;

my_table v_table;

begin

select * bulk collect into my_table from t_user;

for i in 1..my_table.count/10 --my_table.count/10取到的值為四捨五入值

loop

dbms_output.put_line('suser--'||my_table(i).suser);

dbms_output.put_line('name---'||my_table(i).name);

dbms_output.put_line('***----'||my_table(i).***);

end loop;

end;

多維陣列--單條記錄

sql**

declare 

type v_table is table of t_user%rowtype index by binary_integer; 

my_table v_table; 

begin 

select * into my_table(9) from t_user where suser='admin'; 

--my_table(i) i可以為任意整數,但取值時必須保持以i一致; 

dbms_output.put_line('--suser--'||my_table(9).suser||'--name--'||my_table(9).name);  

end; 

declare

type v_table is table of t_user%rowtype index by binary_integer;

my_table v_table;

begin

select * into my_table(9) from t_user where suser='admin';

--my_table(i) i可以為任意整數,但取值時必須保持以i一致;

dbms_output.put_line('--suser--'||my_table(9).suser||'--name--'||my_table(9).name);

end;

自定義陣列

sql**

create or replace type varray_list as varray(30) of varchar2(50); 

--使用自定義陣列 

create or replace procedure show_list(p_varlist in varray_list) 

is 

v_str varchar2(50); 

begin 

for i in 1..p_varlist.count  

loop 

v_str:=p_varlist(i); 

dbms_output.put_line('v_str='||v_str); 

dbms_output.put_line('p_varlist('||i||')='||p_varlist(i)); 

end loop; 

end; 

declare 

my_var varray_list:=varray_list('g','m','d','龔','帥'); 

begin 

show_list(my_var);  

end;

Oracle系列 Oracle入門

一,什麼是oracle?1,oracle是乙個 物件關係 資料庫管理系統 ordbms 2,基於客戶 伺服器 c s 系統結構,是使用者與資料庫之間的介面。客戶端執行與使用者的互動,伺服器端執行資料庫操作。二,oracle的特點?1,企業級應用的大型資料庫 2,安全,完整性強 3,分布式處理 4,可...

Oracle入門筆記

剛開始使用oracle,做一些筆記以積累。2009年11月6日 專案dssc,伺服器上建立資料庫並匯入資料。建立表空間 create tablespace ts stone logging datafile dbf size 100m autoextend on next 100m maxsize ...

Oracle入門心得

oracle的體系太龐大了,對於初學者來說,難免會有些無從下手的感覺,什麼都想學,結果什麼都學不好,所以把學習經驗共享一下,希望讓剛剛入門的人對oracle有乙個總體的認識,少走一些彎路。一 定位 oracle分兩大塊,一塊是開發,一塊是管理。開發主要是寫寫儲存過程 觸發器什麼的,還有就是用orac...