除了構(gòu)造函數(shù)外,集合還有很多內(nèi)建函數(shù),這些函數(shù)稱為方法。
網(wǎng)站建設(shè)哪家好,找成都創(chuàng)新互聯(lián)!專注于網(wǎng)頁設(shè)計(jì)、網(wǎng)站建設(shè)、微信開發(fā)、微信小程序開發(fā)、集團(tuán)企業(yè)網(wǎng)站建設(shè)等服務(wù)項(xiàng)目。為回饋新老客戶創(chuàng)新互聯(lián)還提供了大方免費(fèi)建站歡迎大家使用!
調(diào)用方法的語法如下:
collection.method
下表中列出oracle中集合的方法
方法 描述 使用限制
COUNT 返回集合中元素的個(gè)數(shù)
DELETE 刪除集合中所有元素
DELETE() 刪除元素下標(biāo)為x的元素,如果x為null,則集合保持不變
對VARRAY非法
DELETE(,) 刪除元素下標(biāo)從X到Y(jié)的元素,如果XY集合保持不變
對VARRAY非法
EXIST() 如果集合元素x已經(jīng)初始化,則返回TRUE, 否則返回FALSE
EXTEND 在集合末尾添加一個(gè)元素
對Index_by非法
EXTEND() 在集合末尾添加x個(gè)元素
對Index_by非法
EXTEND(,) 在集合末尾添加元素n的x個(gè)副本
對Index_by非法
FIRST 返回集合中的第一個(gè)元素的下標(biāo)號,對于VARRAY集合始終返回1。
LAST 返回集合中最后一個(gè)元素的下標(biāo)號, 對于VARRAY返回值始終等于COUNT.
LIMIT 返回VARRY集合的最大的元素個(gè)數(shù),對于嵌套表和對于嵌套表和Index_by為null Index_by集合無用
NEXT() 返回在元素x之后及緊挨著它的元素的值,如果該元素是最后一個(gè)元素,則返回null.
PRIOR() 返回集合中在元素x之前緊挨著它的元素的值,如果該元素是第一個(gè)元素,則返回null。
TRI M 從集合末端開始刪除一個(gè)元素
對于index_by不合法
TRIM() 從集合末端開始刪除x個(gè)元素
對index_by不合法
使用實(shí)例:
Set serveroutput on
Declare
type my_text_table_type is table of
varchar2(200)
index by binary_integer;
l_text_table
my_text_table_type;
l_index number;
begin
for emp_rec in (select *
from emp) loop
l_text_table(emp_rec.empno):=emp_rec.ename;
end
loop;
l_index:= l_text_table.first;--使用first方法
loop
exit
when l_index is null;
dbms_output.put_line(l_index ||’:’||
l_text_table(l_index));
l_index :=l_text_table.next(l_index);
end loop;
end;
實(shí)例:
CREATE OR REPLACE PROCEDURE sample
is
TYPE
R_REC IS RECORD(INT NUMBER(6,2), CHR VARCHAR2(100));
TYPE T_REC IS
TABLE OF R_REC INDEX BY BINARY_INTEGER;
A_ZEI T_REC;
IX
NUMBER(10);
BEGIN
FOR IX IN 1..1000 LOOP
A_ZEI(IX).INT :=
IX;
A_ZEI(IX).CHR := TO_CHAR(A_ZEI(IX).INT,'9,999,999.99');
END
LOOP;
END;
或
CREATE OR REPLACE PROCEDURE P_EMP
IS
TYPE T_EMP
IS TABLE OF EMP%ROWTYPE INDEX BY BINARY_INTEGER;
A_EMP T_EMP;
I
BINARY_INTEGER := 0;
BEGIN
FOR REC IN (SELECT EMPNO,ENAME FROM EMP)
LOOP
I := I + 1;
A_EMP(I).EMPNO := REC.EMPNO;
A_EMP(I).ENAME := REC.ENAME;
END LOOP;
FOR K IN 1..I LOOP
DBMS_OUTPUT.PUT_LINE( A_EMP(K).EMPNO || ' ' || A_EMP(K).ENAME);
END
LOOP;
END;
集合:是具有相同定義的元素的聚合。Oracle有兩種類型的集合:
可變長數(shù)組(VARRAY):可以有任意數(shù)量的元素,但必須預(yù)先定義限制值。
嵌套表:視為表中之表,可以有任意數(shù)量的元素,不需要預(yù)先定義限制值。
在PL/SQL中是沒有數(shù)組(Array)概念的。但是如果程序員想用Array的話,就得變通一下,用TYPE 和Table of
Record來代替多維數(shù)組,一樣挺好用的。
emp_type 就好象一個(gè)table 中的一條record 一樣,里面有id, name,gender等。emp_type_array 象個(gè)table,
里面含有一條條這樣的record (emp_type),就象多維數(shù)組一樣。
--單維數(shù)組
DECLARE
TYPE emp_ssn_array IS TABLE OF NUMBER
INDEX BY
BINARY_INTEGER;
best_employees emp_ssn_array;
worst_employees
emp_ssn_array;
BEGIN
best_employees(1) := '123456';
best_employees(2)
:= '888888';
worst_employees(1) := '222222';
worst_employees(2) :=
'666666';
FOR i IN 1..best_employees.count
LOOP
DBMS_OUTPUT.PUT_LINE('i='|| i || ', best_employees= '
||best_employees(i)
|| ', worst_employees= ' ||worst_employees(i));
END
LOOP;
END;
--多維數(shù)組
DECLARE
TYPE emp_type IS RECORD
( emp_id
employee_table.emp_id%TYPE,
emp_name
employee_table.emp_name%TYPE,
emp_gender employee_table.emp_gender%TYPE
);
TYPE emp_type_array IS TABLE OF emp_type INDEX BY
BINARY_INTEGER;
emp_rec_array emp_type_array;
emp_rec
emp_type;
BEGIN
emp_rec.emp_id := 300000000;
emp_rec.emp_name :=
'Barbara';
emp_rec.emp_gender := 'Female';
emp_rec_array(1) :=
emp_rec;
emp_rec.emp_id := 300000008;
emp_rec.emp_name :=
'Rick';
emp_rec.emp_gender := 'Male';
emp_rec_array(2) := emp_rec;
FOR
i IN 1..emp_rec_array.count LOOP
DBMS_OUTPUT.PUT_LINE('i='||i
||', emp_id
='||emp_rec_array(i).emp_id
||', emp_name
='||emp_rec_array(i).emp_name
||', emp_gender =
'||emp_rec_array(i).emp_gender);
END LOOP;
END;
-------------- Result
--------------
i=1, emp_id =300000000, emp_name =Barbara, emp_gender =
Female
i=2, emp_id =300000008, emp_name =Rick, emp_gender = Male
用下面語句聲明數(shù)組類型
type intarray is varry(30) of integer;
用下面語句聲明一個(gè)數(shù)組變量
declare
A intarray;用下面語句聲明數(shù)組類型
type intarray is varry(30) of integer;
用下面語句聲明一個(gè)數(shù)組變量
declare
A intarray;用下面語句聲明數(shù)組類型
type intarray is varry(30) of integer;
用下面語句聲明一個(gè)數(shù)組變量
declare
A intarray;
集合:是具有相同定義的元素的聚合。Oracle有兩種類型的集合:
可變長數(shù)組(VARRAY):可以有任意數(shù)量的元素,但必須預(yù)先定義限制值。
嵌套表:視為表中之表,可以有任意數(shù)量的元素,不需要預(yù)先定義限制值。
在PL/SQL中是沒有數(shù)組(Array)概念的。但是如果程序員想用Array的話,就得變通一下,用TYPE
和Table
of
Record來代替多維數(shù)組,一樣挺好用的。
emp_type
就好象一個(gè)table
中的一條record
一樣,里面有id,
name,gender等。emp_type_array
象個(gè)table,
里面含有一條條這樣的record
(emp_type),就象多維數(shù)組一樣。
--單維數(shù)組
DECLARE
TYPE
emp_ssn_array
IS
TABLE
OF
NUMBER
INDEX
BY
BINARY_INTEGER;
best_employees
emp_ssn_array;
worst_employees
emp_ssn_array;
BEGIN
best_employees(1)
:=
'123456';
best_employees(2)
:=
'888888';
worst_employees(1)
:=
'222222';
worst_employees(2)
:=
'666666';
FOR
i
IN
1..best_employees.count
LOOP
DBMS_OUTPUT.PUT_LINE('i='||
i
||
',
best_employees=
'
||best_employees(i)
||
',
worst_employees=
'
||worst_employees(i));
END
LOOP;
END;
--多維數(shù)組
DECLARE
TYPE
emp_type
IS
RECORD
(
emp_id
employee_table.emp_id%TYPE,
emp_name
employee_table.emp_name%TYPE,
emp_gender
employee_table.emp_gender%TYPE
);
TYPE
emp_type_array
IS
TABLE
OF
emp_type
INDEX
BY
BINARY_INTEGER;
emp_rec_array
emp_type_array;
emp_rec
emp_type;
BEGIN
emp_rec.emp_id
:=
300000000;
emp_rec.emp_name
:=
'Barbara';
emp_rec.emp_gender
:=
'Female';
emp_rec_array(1)
:=
emp_rec;
emp_rec.emp_id
:=
300000008;
emp_rec.emp_name
:=
'Rick';
emp_rec.emp_gender
:=
'Male';
emp_rec_array(2)
:=
emp_rec;
FOR
i
IN
1..emp_rec_array.count
LOOP
DBMS_OUTPUT.PUT_LINE('i='||i
||',
emp_id
='||emp_rec_array(i).emp_id
||',
emp_name
='||emp_rec_array(i).emp_name
||',
emp_gender
=
'||emp_rec_array(i).emp_gender);
END
LOOP;
END;
--------------
Result
--------------
i=1,
emp_id
=300000000,
emp_name
=Barbara,
emp_gender
=
Female
i=2,
emp_id
=300000008,
emp_name
=Rick,
emp_gender
=
Male
定義比如:TYPE test IS TABLE OF VARCHAR2(100) INDEX BY PLS_INTEGER;
用就直接:test(1):=3;就行
作用:就是類似程序語言中的數(shù)組