程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> Oracle數據庫 >> Oracle數據庫基礎 >> Oracle 復合類型所包含的表有哪些

Oracle 復合類型所包含的表有哪些

編輯:Oracle數據庫基礎

我們大家都知道在Oracle裡的變量主要有四種類型:即,數字型,字符型,以及引用型和復合型,其中,Oracle 復合類型包括,table 表與數組 array,table 的表又可分為, 1. 索引表 index table 2.嵌套表 nested table。

一.索引表:

定義:(練習中表名均為 v_table)

type 索引表名 is table of 類型 index by binary_integer;

使用: 因為不能直接使用 索引表名 所以先定義個變量

  1. v_temptable_table v_table; 

索引表的特點:

① 索引表中只有兩列

②只能放在內存中

③不能使用DML 操作

④使用較簡單

索引表練習

declare

定義索引表

  1. type v_table is table of emp%rowtype index by binary_integer; 

定義索引表變量

  1. v_emp v_table;  
  2. cursor cur_emp is select * from emp;  
  3. v_num number:=0;  
  4. begin 

把EMP中的每一條數據放入索引表中

  1. for v_e in cur_emp loop  
  2. v_numv_num:=v_num+1;  
  3. select * into v_emp(v_num) from emp where ename=v_e.ename;  
  4. end loop; 

輸出每一條記錄的名字

  1. for I in 1..v_emp.count loop  
  2. dbms_output.put_line(v_emp(i).ename);  
  3. end loop;  
  4. end;  

二.嵌套表:

定義:(練習中表名均為v_nested)

type 表名 is table of 類型 ;

使用:定義變量並初始化

  1. v_my_nested v_nested :v_nested(‘aa’,’bb’); 

特點:

1.可以使用DML 操作

2.使用前需要初始化

3.可用EXTEND方法擴展

練習:

  1. declare  
  2. type v_nested is table of varchar2(20);  
  3. v_my_nested v_nestedv_nested:=v_nested('aa','bb');初始化  
  4. begin  
  5. v_my_nested.extend(3);  
  6. v_my_nested(5):='ee';  
  7. end;  

三.數組:array

定義:

type 數組名 is varry(最大下標值界限) of 類型 ;

注意:使用時先初始化,能使用DML 操作

  1. v_my_varry[100]:=v_varray('aa','bb');  
  2. declare 

定義數組最大100上限

  1. type v_array is array(100) of emp.ename%type; 

定義數組變量並開空間

  1. v_arr v_arrayv_array:=v_array();  
  2. cursor cur_emp is select * from emp;  
  3. v_num number:=0;  
  4. begin  
  5. v_arr.extend(100);   
  6. for v_e in cur_emp loop  
  7. v_numv_num:=v_num+1;  
  8. select ename into v_arr(v_num) from emp where ename=v_e.ename;  
  9. end loop;  
  10. for I in 1..v_arr.count loop  
  11. dbms_output.put_line(v_arr(i));end loop;  
  12. end;  

四.Oracle 復合類型的方法:

關鍵字 extend 只用於嵌套表和數組中

count 用於計算長度

first 指向第一個

extend 擴展空間個數

Last 指向最後一個

exist 判斷是否存在 存在 is not null 不存在 is null

next 向下移

prIEv 向上移

delete(n) 刪除記錄(n可指定具體一行)

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved