Skip to content

Instantly share code, notes, and snippets.

@anytizer
Created October 12, 2013 14:52
Show Gist options
  • Save anytizer/6950795 to your computer and use it in GitHub Desktop.
Save anytizer/6950795 to your computer and use it in GitHub Desktop.
List of triggers in a MySQL database
SELECT
EVENT_MANIPULATION,
ACTION_TIMING,
TRIGGER_NAME,
ACTION_STATEMENT
FROM INFORMATION_SCHEMA.TRIGGERS
WHERE TRIGGER_SCHEMA = 'database';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment