查询mysql没有主键的表
Posted 半暖
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了查询mysql没有主键的表相关的知识,希望对你有一定的参考价值。
select table_schema, table_name from information_schema.tables where table_name not in (select distinct table_name from information_schema.columns where column_key = "PRI") AND table_schema not in (‘mysql‘, ‘information_schema‘, ‘sys‘, ‘performation_schema‘);
以上是关于查询mysql没有主键的表的主要内容,如果未能解决你的问题,请参考以下文章