Mysql
 sql >> Database >  >> RDS >> Mysql

MySQL:come faccio a scoprire quali tabelle fanno riferimento a una tabella specifica?

select table_name
from information_schema.KEY_COLUMN_USAGE
where table_schema = 'my_database'
and referenced_table_name = 'my_table_here';

Funziona.