我需要做这个小功能,但是不起作用。它不会给我任何错误,只是不能满足我的需要。
CREATE OR REPLACE FUNCTION relleno_masivo() returns void as
$$
DECLARE
r sw%rowtype;
nombre text;
BEGIN
for r in select distinct institucion from sw where fuente='FFMM'
LOOP
nombre:= r.institucion;
PERFORM * FROM inserta_mas_transadas(nombre);
END LOOP;
END;
$$
LANGUAGE 'plpgsql'
问题是什么都不插入! 非常感谢!