📜  psql lst 触发器 - SQL 代码示例

📅  最后修改于: 2022-03-11 15:05:32.654000             🧑  作者: Mango

代码示例1
select event_object_schema as table_schema,
       event_object_table as table_name,
       trigger_schema,
       trigger_name,
       string_agg(event_manipulation, ',') as event,
       action_timing as activation,
       action_condition as condition,
       action_statement as definition
from information_schema.triggers
group by 1,2,3,4,6,7,8
order by table_schema,
         table_name;
Code has been copied