Skip to content

Instantly share code, notes, and snippets.

@mos3abof
Created August 4, 2014 13:19
Show Gist options
  • Select an option

  • Save mos3abof/54c378664bec9d93768f to your computer and use it in GitHub Desktop.

Select an option

Save mos3abof/54c378664bec9d93768f to your computer and use it in GitHub Desktop.
List tables referencing 'my_table' in 'my_database' MySQL database
select
table_name
from
information_schema.KEY_COLUMN_USAGE
where
table_schema = 'my_database'
and referenced_table_name = 'my_table';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment