我想使用变量作为语句的一部分,但它表示“TabLeReF”不存在。
CREATE OR REPLACE FUNCTION ff(tipo_acta integer, hasta date)
RETURNS void AS
$BODY$
DECLARE
tableref varchar;
r record;
BEGIN
if tipo_acta = 1 then
tableref = 't1';
elsif tipo_acta = 2 then tableref = 't2';
else tableref = 't3';
end if;
for r select id from tableref where somedate >= hasta loop
--
end loop;
我试图使用
EXECUTE 'select id from ' || tableref || ' where....'
但也不起作用我想先用
select id into r from t1 where ..
获取记录,然后在循环中使用它,但似乎没有办法在这样的循环中使用记录:FOR r LOOP
....
END LOOP;
最佳答案
为此,您需要使用动态sql。您需要在PLPG/SQL中使用execute
command来实现这一点。
在你的代码中应该是这样的:
EXECUTE 'SELECT id FROM ' || tableref || ' WHERE somedate >= $1'
INTO c
USING hasta;