如何知道在多少个表中使用的特定主键作为引用键或数据库中的简单列?或相反亦然?请回答heidisql或MySql服务器?
答案 0 :(得分:0)
这是如何完成的:
use information_schema;
SELECT * from key_column_usage
WHERE referenced_table_name = 'table_name' # table that contains the primary key
and
referenced_column_name = 'id'; # the primary key in that table
这将为您提供一个包含所有详细信息的表格。