-- Change value of nested table
DECLARE
TYPE Roster
IS
TABLE OF
VARCHAR(
15);
-- nested table type
-- nested table variable initialized with constructor:
names2 Roster := Roster(
'D Caruso',
'J Hamil',
'D Piro',
'R Singh');
BEGIN
raise info
'Initial Values %', names2;
names2(
3) :=
'P Perez';
-- Change value of one element
raise info
'Current Values: %', names2;
names2 := Roster(
'A Jansen',
'B Gupta');
-- Change entire table
raise info
'Current Values: %', names2;
END;
/
INFO: Initial
Values {
"D Caruso",
"J Hamil",
"D Piro",
"R Singh"}
INFO: Current
Values: {
"D Caruso",
"J Hamil",
"P Perez",
"R Singh"}
INFO: Current
Values: {
"A Jansen",
"B Gupta"}
嵌套表FIRST(), LAST()方法
-- add elements and test FIRST(), LAST()
DECLARE
TYPE Roster
IS
TABLE OF
VARCHAR(
15);
-- nested table type
-- nested table variable initialized with constructor:
names2 Roster := Roster(
'D Caruso',
'J Hamil',
'D Piro',
'R Singh');
BEGIN
raise info
'Initial Values %', names2;
raise info
'first Values: %', names2.first;
raise info
'last Values: %', names2.last;
names2(
5) :=
'P Perez';
-- add one element
raise info
'Current Values: %', names2;
raise info
'last Values: %', names2.last;
-- add one element, the elements between the valid element and the new element is NULL
names2(
7) :=
'A Jansen';
raise info
'Current Values: %', names2;
raise info
'last Values: %', names2.last;
END;
/
INFO: Initial
Values {
"D Caruso",
"J Hamil",
"D Piro",
"R Singh"}
INFO:
first
Values:
1
INFO:
last
Values:
4
INFO: Current
Values: {
"D Caruso",
"J Hamil",
"D Piro",
"R Singh",
"P Perez"}
INFO:
last
Values:
5
INFO: Current
Values: {
"D Caruso",
"J Hamil",
"D Piro",
"R Singh",
"P Perez",
NULL,
"A Jansen"}
INFO:
last
Values:
7
嵌套表EXTEND()方法
-- test EXTEND()
DECLARE
TYPE Roster
IS
TABLE OF
VARCHAR(
15);
-- nested table type
-- nested table variable initialized with constructor:
names2 Roster := Roster(
'D Caruso',
'J Hamil',
'D Piro',
'R Singh');
BEGIN
raise info
'Initial Values %', names2;
names2.EXTEND;
raise info
'Current Values: %', names2;
names2.EXTEND();
raise info
'Current Values: %', names2;
names2.EXTEND(
2);
raise info
'Current Values: %', names2;
END;
/
INFO: Initial
Values {
"D Caruso",
"J Hamil",
"D Piro",
"R Singh"}
INFO: Current
Values: {
"D Caruso",
"J Hamil",
"D Piro",
"R Singh",
NULL}
INFO: Current
Values: {
"D Caruso",
"J Hamil",
"D Piro",
"R Singh",
NULL,
NULL}
INFO: Current
Values: {
"D Caruso",
"J Hamil",
"D Piro",
"R Singh",
NULL,
NULL,
NULL,
NULL}
嵌套表DELETE()方法
-- test DELETE()
DECLARE
TYPE Roster
IS
TABLE OF
VARCHAR(
15);
-- nested table type
-- nested table variable initialized with constructor:
names2 Roster := Roster(
'D Caruso',
'J Hamil',
'D Piro',
'R Singh');
BEGIN
raise info
'Initial Values %', names2;
names2.DELETE;
raise info
'Current Values: %', names2;
END;
/
INFO: Initial
Values {
"D Caruso",
"J Hamil",
"D Piro",
"R Singh"}
INFO: Current
Values: {}
嵌套表默认初始化
-- test DEFAULT initialized
DECLARE
TYPE Roster
IS
TABLE OF
VARCHAR(
15);
-- nested table type
-- nested table variable initialized with constructor:
names2 Roster
default Roster(
'none');
-- default
BEGIN
raise info
'Initial Values %', names2;
names2 := Roster();
raise info
'Current Values: %', names2;
names2 := Roster(
'D Caruso',
'J Hamil',
'D Piro',
'R Singh');
raise info
'Current Values: %', names2;
END;
/
INFO: Initial
Values {
none}
INFO: Current
Values: {}
INFO: Current
Values: {
"D Caruso",
"J Hamil",
"D Piro",
"R Singh"}
存储过程其它语法结合使用
DECLARE
TYPE Roster
IS
TABLE OF
VARCHAR(
15);
-- nested table type
-- nested table variable initialized with constructor:
names2 Roster := Roster(
'D Caruso',
'J Hamil',
'D Piro',
'R Singh');
total
integer;
BEGIN
total := names2.count;
raise info
'Total % people', total;
FOR i
IN names2.first .. names2.last
LOOP
raise info
'ID: %, people: %', i, names2(i);
END
LOOP;
END;
/
INFO: Total
4 people
INFO: ID:
1, people: D Caruso
INFO: ID:
2, people: J Hamil
INFO: ID:
3, people: D Piro
INFO: ID:
4, people: R Singh
DECLARE
TYPE Roster
IS
TABLE OF
VARCHAR(
15);
-- nested table type
-- nested table variable initialized with constructor:
names2 Roster := Roster(
'D Caruso',
'J Hamil',
'D Piro',
'R Singh');
i
integer;
BEGIN
FOR i
IN
1..
6
LOOP
IF names2.EXISTS(i)
THEN
raise info
'names2(%) = %', i, names2(i);
ELSE
raise info
'names2(%) does not exist', i;
END
IF;
END
LOOP;
END;
/
INFO: names2(
1) = D Caruso
INFO: names2(
2) = J Hamil
INFO: names2(
3) = D Piro
INFO: names2(
4) = R Singh
INFO: names2(
5) does
not exist
INFO: names2(
6) does
not exist