Mysql/系统运维/网站建设

MySQl 数据库已有数据的表添加自增 ID?

daimafengzi · 2月12日 · 2022年本文共210个字 · 预计阅读1分钟11503次已读

数据库导入数据后发现没有自增 id,因此就有了上面这个问题。

解决方法
1、给某一张表先增加一个字段,这里我们就以 node_table 这张表来举例,在数据库命令行输入下面指令 :

alter table node_table add id int

2、更改 id 字段属性为自增属性,在数据库命令行输入下面指令 :

alter table `node_table` change id id int not null auto_increment primary key;
0 条回应
| 耗时 0.333 秒 | 查询 56 次 | 内存 4.22 MB |
本站CDN由One degree CDN提供