mysql查找所有数据库中没有主键的表问题怎么解决

数据库   发布日期:2023年10月20日   浏览次数:633

今天小编给大家分享一下mysql查找所有数据库中没有主键的表问题怎么解决的相关知识点,内容详细,逻辑清晰,相信大部分人都还太了解这方面的知识,所以分享这篇文章给大家参考一下,希望大家阅读完这篇文章后有所收获,下面我们一起来了解一下吧。

查找所有数据库中没有主键的表

  1. select table_schema,table_name from information_schema.tables
  2. where (table_schema,table_name) not in(
  3. select distinct table_schema,table_name from information_schema.columns where COLUMN_KEY='PRI'
  4. )
  5. and table_schema not in (
  6. 'sys','mysql','information_schema','performance_schema' --排除系统库
  7. );

修改mysql数据表主键

这里以网上copy的建表语句为例

  1. create table users
  2. (
  3. name varchar(50) null,
  4. salt char(4) null comment '盐',
  5. password varchar(255) null comment '密码',
  6. create_at timestamp default CURRENT_TIMESTAMP null comment '创建时间',
  7. update_at timestamp default CURRENT_TIMESTAMP not null on update CURRENT_TIMESTAMP comment '修改时间',
  8. tid int unsigned auto_increment
  9. primary key
  10. )
  11. charset = utf8;

mysql的版本是8,这里要把主键tid改为id。需改自增主键需要三步骤

先删除掉自增

  1. alter table users modify tid int not null;

再删除主键

  1. alter table users drop primary key;

修改名称

  1. alter table users change tid id int unsigned auto_increment primary key;

以上就是mysql查找所有数据库中没有主键的表问题怎么解决的详细内容,更多关于mysql查找所有数据库中没有主键的表问题怎么解决的资料请关注九品源码其它相关文章!