復合數據類型大致可以分為兩類。一類是記錄類型,適用於處理單行多列數據,有點類似於java中的VO;一類是集合類型,適用於處理單列多行的數據,類似java中的List,以下實驗在11.2.0.1.0版本下做的。
1.記錄類型
drop table test purge;
create table testcommit;
--顯式定義記錄類型
declare
type t_record is record
(
id test.id%type,
name test.name%type
);
var_record t_record;
coun number := 0;
begin
for c_row in (select id,name from test) loop
coun :=
coun + 1;
dbms_output.put_line('第'||coun||'循環');
var_record.id := c_row.id;
var_record.name := c_row.name;
dbms_output.put_line('記錄:'||var_record.id||'---'||var_record.name);
dbms_output.put_line('游標:'||c_row.id||'---'||c_row.name);
end loop;
exception when others then
dbms_output.put_line(sqlcode||sqlerrm);
end;
/
輸出結果:
第1循環
記錄:1---aaa
游標:1---aaa
第2循環
記錄:2---bbb
游標:2---bbb
第3循環
記錄:3---ccc
游標:3---ccc
第4循環
記錄:4---ddd
游標:4---ddd
第5循環
記錄:5---eee
游標:5---eee
--隱式定義記錄類型
declare
t_record1 test%rowtype;
cursor c_row(v_id in varchar2) is select id,name from test where id <= v_id;
t_record2 c_row%rowtype;
begin
for row_test in c_row(3) loop
t_record1.id := row_test.id;
t_record1.name := row_test.name;
t_record2.id := row_test.id;
t_record2.name := row_test.name;
dbms_output.put_line('表的rowtype:'||t_record1.id||'---'||t_record1.name);
dbms_output.put_line('游標的rowtype:'||t_record2.id||'---'||t_record2.name);
dbms_output.put_line('游標:'||row_test.id||'---'||row_test.name);
end loop;
exception when others then
dbms_output.put_line(sqlcode||sqlerrm);
end;
/
輸出結果:
表的rowtype:1---aaa
游標的rowtype:1---aaa
游標:1---aaa
表的rowtype:2---bbb
游標的rowtype:2---bbb
游標:2---bbb
表的rowtype:3---ccc
游標的rowtype:3---ccc
游標:3---ccc
如果在顯式和隱式定義記錄中選擇,我傾向於選擇顯式的定義,因為讓邏輯更加清晰。
2.集合類型
--索引表
declare
cursor cur_test is select id,name from test;
type t_test1 is table of test%rowtype index by binary_integer;
var_test1 t_test1;
begin
SELECT id,name INTO var_test1(0) FROM test WHERE id=1;
dbms_output.put_line('var_test1(0):'||var_test1(0).id||'---'||var_test1(0).name);
SELECT id,name INTO var_test1(10) FROM test WHERE id=2;
dbms_output.put_line('var_test1(10):'||var_test1(10).id||'---'||var_test1(10).name);
end;
var_test1(0):1---aaa
var_test1(10):2---bbb
--嵌套表
DECLARE
TYPE t_test1 IS TABLE OF test.id%TYPE;
var_test1 t_test1;
begin
var_test1 := t_test1(1,2,3);
dbms_output.put_line('var_test1: '||var_test1(1)||','||var_test1(2)||','||var_test1(3));
end;
var_test1: 1,2,3
--varray表
DECLARE
TYPE t_test1 IS VARRAY (10) OF test.id%TYPE;
var_test1 t_test1;
begin
var_test1 := t_test1(1,2,3);
dbms_output.put_line('var_test1: '||var_test1(1)||','||var_test1(2)||','||var_test1(3));
end;
var_test1: 1,2,3
索引表和嵌套表集合中的元素的數量沒有限制,varray集合中是沒有限制的。
索引表不能存儲在數據庫中,嵌套表和varray可以被存儲在數據庫中。