Skip to content

Instantly share code, notes, and snippets.

@yellow5
Created February 14, 2013 20:28
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yellow5/4956103 to your computer and use it in GitHub Desktop.
Save yellow5/4956103 to your computer and use it in GitHub Desktop.
Query to list all foreign keys for a given schema in MySQL.
SELECT table_name, constraint_name
FROM information_schema.table_constraints
WHERE
table_schema = 'DATABASE_NAME' AND
constraint_type= 'FOREIGN KEY'
;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment