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

PostgreSQL:verifica di NEW e OLD in una funzione per un trigger

L'approccio abituale per fare in modo che una funzione trigger esegua cose diverse a seconda di come è stato attivato il trigger è controllare l'operazione del trigger tramite TG_OP

CREATE OR REPLACE FUNCTION update_table_count()
RETURNS trigger AS
$$
DECLARE 
  updatecount INT;
BEGIN
  if tg_op = 'UPDATE' then 
    select count(*) into updatecount from source_table where id = new.id;
    update dest_table set count=updatecount where id = new.id;
  elsif tg_op = 'DELETE' then 
    ... do something else
  end if;
  RETURN NEW;
END;
$$
LANGUAGE plpgsql;

Non correlato, ma:il nome della lingua è un identificatore. Non citarlo usando virgolette singole.