PostgreSQL
 sql >> Database >  >> RDS >> PostgreSQL

Incorporando un LOOP in un SQL

Il problema è chiamare la funzione con argomenti ma non specificarne nessuno durante la creazione della funzione. Quindi hai bisogno di qualcosa come (non testato):

CREATE FUNCTION "UpdatePMPM"(nbr_mem_months integer, effectivdate date, some_arg varchar) RETURNS void
    LANGUAGE plpgsql
AS
$$
DECLARE
    ym varchar := to_char(effectivedate,'YYYYMM');
BEGIN
        FOR r IN  1..nbr_mem_months LOOP
            
            UPDATE elan.pmpm set mbrmonths = mbrmonths+1 where yyyyymm = ym;
            effectivedate = effectivedate + interval '1 month';
            ym=to_char(effectivedate,'YYYYMM');
        END LOOP;
    RETURN;
END
$$;

Dall'errore non è chiaro quale dovrebbe essere il terzo argomento, quindi questo ti chiarirà.