请解释一下如何在oracle中使用cursor for loop。
如果我使用下一个代码,一切都很好。
for rec in (select id, name from students) loop
-- do anything
end loop;
但是如果我为这个sql语句定义变量,它就不起作用。
v_sql := 'select id, name from students';
for rec in v_sql loop
-- do anything
end loop;
错误:PLS-00103
答案 0 :(得分:11)
要解决与您的问题中的第二种方法相关的问题,您需要使用
游标变量和打开游标并获取数据的显式方式。它不是
允许在FOR
循环中使用游标变量:
declare
l_sql varchar2(123); -- variable that contains a query
l_c sys_refcursor; -- cursor variable(weak cursor).
l_res your_table%rowtype; -- variable containing fetching data
begin
l_sql := 'select * from your_table';
-- Open the cursor and fetching data explicitly
-- in the LOOP.
open l_c for l_sql;
loop
fetch l_c into l_res;
exit when l_c%notfound; -- Exit the loop if there is nothing to fetch.
-- process fetched data
end loop;
close l_c; -- close the cursor
end;
答案 1 :(得分:7)
试试这个:
cursor v_sql is
select id, name from students;
for rec in v_sql
loop
-- do anything
end loop;
然后无需open
,fetch
或close
光标。
答案 2 :(得分:2)
您没有在任何地方执行该sql字符串。只需这样做
v_sql := 'select id, name from students';
open cur for v_sql;
for rec in cur loop
-- do anything
end loop;
或者你可以这样做
cursor cur is select id, name from students;
open cur;
for rec in cur loop
-- do anything
end loop;
或者你可以这样做
for rec in (select id, name from students) loop
-- do anything
end loop
答案 3 :(得分:0)
如果要在运行时进行查询,则必须使用Refcursor。实际上,refcursors是指向查询的指针,它们不占用所提取行的任何空间。 普通光标不适合它。
declare
v_sql varchar2(200);
rec sys_refcursor;
BEGIN
v_sql := 'select id, name from students';
open rec for v_sql
loop
fetch
exit when....
-- do anything
end loop;