आप ऐसा कर सकते हैं, हालांकि शायद उतना चालाक नहीं जितना आप चाहेंगे:
declare
type nt_type is table of number;
nt nt_type := nt_type (1, 3, 5);
begin
for i in 1..nt.count loop
dbms_output.put_line(nt(i));
end loop;
end;
यदि आप डेटाबेस में एक प्रकार बनाते हैं:
create type number_table is table of number;
तो आप यह कर सकते हैं:
begin
for r in (select column_value as var from table (number_table (1, 3, 5))) loop
dbms_output.put_line(r.var);
end loop;
end;