我目前正在使用以下内容遍历PL / SQL中的值:
for c in (select * from example_table where name is not null) loop
-- logic
end loop;
我想用动态语句替换SQL语句,例如:
l_sql := 'select * from example_table where || l_col || is not null';
for c in (l_sql) loop
-- logic
end loop;
这可能吗?
最诚挚的问候
答案 0 :(得分:2)
使用隐式游标循环是不可能的(在for loop
内部选择)。您可以通过记录变量为OPEN .. FETCH .. LOOP
的{{1}}到REFCURSOR
使用传统的tablename%ROWTYPE
DECLARE
t_rec example_table%ROWTYPE;
l_sql VARCHAR2(1000);
v_cur SYS_REFCURSOR;
l_col varchar2(32) := 'MY_COLUMN';
BEGIN
l_sql := 'select * from example_table where '|| l_col || ' is not null';
OPEN v_cur FOR l_sql;
LOOP
FETCH v_cur INTO t_rec; --fetch a row
EXIT WHEN v_cur%NOTFOUND;
-- your logic using t_rec columns.
END LOOP;
CLOSE v_cur;
END;
/