查询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没有主键的表的主要内容,如果未能解决你的问题,请参考以下文章

sql 查询没有主键的表

mysql 查看所有没有主键的表

如果mysql里面的数据过多,查询太慢怎么办?

mysql 联表查询 巨慢

如何解决mysql 查询和更新速度慢

如何查找MySQL中查询慢的SQL语句