我想删除一个表,但是一个或多个其他表引用了该表。我如何找出哪些表引用了该表,而不必一一查看数据库中的每个表?

最佳答案

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

这有效。

10-07 23:17