抛砖引玉--对集合的整理资料

发表于:2007-05-25来源:作者:点击数: 标签:集合整理index抛砖引玉资料
index by表: 定义方式:type tabletype is table of type index by binary_interget 特点:关键字可以是binary_interget的任意值,不需要初始化 例子: TYPE StudentTab IS TABLE OF students%ROWTYPE INDEX BY BINARY_INTEGER; v_Students(1).first_name :

  index by表:
  定义方式:type tabletype is table of type index by binary_interget
  特点:关键字可以是binary_interget的任意值,不需要初始化
  例子:
  TYPE StudentTab IS TABLE OF students%ROWTYPE INDEX BY BINARY_INTEGER;
  v_Students(1).first_name := 'Larry';
  
  嵌套表:
  定义方式:type tabletype is table of type [not null]
  特点:关键字不能是负值,必须用有序的关键字创建,可以存储在表中,使用前必须先初始化
  例子:
  TYPE NumbersTab IS TABLE OF NUMBER;
  -- Create a table with one element.
  v_Tab1 NumbersTab := NumbersTab(-1);
  备注:
  v_Tab1 NumbersTab ;
  v_Tab1 := NumbersTab(-1);
  等同于
  v_Tab1 NumbersTab := NumbersTab(-1);
  
  可变数组:
  定义方式:type type_name is {varray | varying varray} (max_size) of element_type[not null]
  特点:跟嵌套表相似,不过他有最大值限制
  例子:
  TYPE Strings IS VARRAY(5) OF VARCHAR2(10);
  v_List Strings := Strings('One', 'Two', 'Three');

原文转自:http://www.ltesting.net