oracle – PL / SQL:怎样从游标建设范例
发布时间:2021-01-26 01:42:22 所属栏目:站长百科 来源:网络整理
导读:我可以从游标界说范例吗? 今朝我必需编写以下内容以便从某些表字段建设记录变量: declare cursor cur is select f_1,f_2,f_3,f_4 from mytable where 1=0; myvar cur%rowtype; -- use the cursor to declare myvarbegin null;end; 我想写这样的对象: decl
|
我可以从游标界说范例吗? 今朝我必需编写以下内容以便从某些表字段建设记录变量: declare
cursor cur
is
select
f_1,f_2,f_3,f_4
from
mytable
where
1=0;
myvar cur%rowtype; -- use the cursor to declare myvar
begin
null;
end;
我想写这样的对象: declare
cursor cur
is
select
f_1,f_4
from
mytable
where
1=0;
type mytype is cur%rowtype; -- declare "mytype" from cursor
myvar mytype; -- use "mytype" to declare "myvar"
begin
null;
end;
这在这个简朴的例子中看起来并不有效,但在现实题目中也许有效. 另一种要领是手动建设记录范例: declare
type mytype is record -- declare "mytype"
(
f_1 mytable.f_1%type,f_2 mytable.f_2%type,f_3 mytable.f_3%type,f_4 mytable.f_4%type
);
myvar mytype; -- use "mytype" to declare "myvar"
begin
null;
end;
但它对我来说更脏(我必需一再每个字段名称两次,而且表名称多次). 办理要领
是的,你可以界说你本身的范例,它基于cursor_name%rowtype记录范例(在这种环境下根基上它将是一个同义词),行使subtype要害字,而不是范例1. 这是一个例子: set serveroutput on;
declare
cursor c1 is
select 1 as col1,2 as col2,3 as col3
from dual;
subtype mytype is c1%rowtype;
l_myvar mytype;
begin
open c1;
fetch c1 into l_myvar;
dbms_output.put(to_char(l_myvar.col1) || ' : ');
dbms_output.put(to_char(l_myvar.col2) || ' : ');
dbms_output.put_line(to_char(l_myvar.col3));
close c1;
end;
功效: anonymous block completed 1 : 2 : 3 (编辑:湖南网) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |

