2012-07-31 7 views
7

Ecco la mia dichiarazione di funzione e parte del corpo:PL/pgSQL SELEZIONA in un array

CREATE OR REPLACE FUNCTION access_update() 
RETURNS void AS $$ 
DECLARE team_ids bigint[]; 
BEGIN 
    SELECT INTO team_ids "team_id" FROM "tmp_team_list"; 

    UPDATE "team_prsnl" 
    SET "updt_dt_tm" = NOW(), "last_access_dt_tm" = NOW() 
    WHERE "team_id" IN team_ids; 
END; $$ LANGUAGE plpgsql; 

voglio team_ids essere un array di int che posso poi usare nella dichiarazione UPDATE. Questa funzione dammi errori come questo:

psql:functions.sql:62: ERROR: syntax error at or near "team_ids" 
LINE 13: AND "team_id" IN team_ids; 
+0

Penso che tu abbia sbagliato l'ordine nella selezione. Non dovrebbe essere così: 'SELECT team_id INTO team_ids FROM tmp_team_list;' –

risposta

11

più veloce e più semplice con un FROM clause in your UPDATE statement:

UPDATE team_prsnl p 
SET updt_dt_tm = now() 
     ,last_access_dt_tm = now() 
FROM tmp_team_list t 
WHERE p.team_id = t.team_id; 

A parte questo, pur operando con una matrice, la clausola WHERE dovrebbe essere

WHERE team_id = ANY (team_ids) 

Il IN costrutto funziona con gli insiemi , non con gli array.

3

per creare un array da un SELECT:

# select array( select id from tmp_team_list) ; 
?column? 
---------- 
{1,2} 
(1 row) 

L'operatore IN è documented come prendere una sottoquery per l'operando a destra. Per esempio:

UPDATE team_prsnl SET updt_dt_tm = NOW() 
WHERE team_id IN (SELECT id FROM tmp_team_list); 

Forse si può evitare la matrice del tutto, o provare fornendo la matrice o select from team_ids.