获取表名 + 触发器名称 + 具体执行内容:
SELECT CONCAT(event_object_table,’ ‘,trigger_name,’ ‘,action_statement) as sqltext FROM information_schema.TRIGGERS
order by event_object_table
不便集中处理所有触发器;
获取表名 + 触发器名称 + 具体执行内容:
SELECT CONCAT(event_object_table,’ ‘,trigger_name,’ ‘,action_statement) as sqltext FROM information_schema.TRIGGERS
order by event_object_table
不便集中处理所有触发器;