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

Come ottenere i trigger associati a una vista o a una tabella in PostgreSQL

Questo restituirà tutti i dettagli che vuoi sapere

select * from information_schema.triggers

o se vuoi ordinare i risultati di una tabella specifica, puoi provare

SELECT event_object_table
      ,trigger_name
      ,event_manipulation
      ,action_statement
      ,action_timing
FROM  information_schema.triggers
WHERE event_object_table = 'tableName' -- Your table name comes here
ORDER BY event_object_table
     ,event_manipulation

quanto segue restituirà il nome della tabella con trigger

select relname as table_with_trigger
from pg_class
where pg_class.oid in (
        select tgrelid
        from pg_trigger
        )