1、对于有的已经存在联合主键的,先删除。
alter table table_name drop primary key;
2、然后在表的第一行添加id,名称为pk_id
alter table table_name add pk_id bigint(20) not null auto_increment primary key first;
3、如果要给数据库所有表都加上自增id,名称为pk_id
SELECT
CONCAT(‘alter table ‘, table_name,‘ add pk_id bigint(20) not null auto_increment primary key first;‘)
FROM information_schema.tables t
WHERE t.table_name LIKE ‘前缀%‘;
前缀表示数据表名的前缀,比如busi_table ,前缀就是busi,就会查出所有前缀是busi的。
原文地址:https://www.cnblogs.com/kdx-2/p/9120879.html
时间: 2024-11-08 23:31:13