mysql 给已经存在数据的表添加一个自增的id
mysql 给已经存在数据的表添加一个自增的id
先添加字段id
alter table test_table add id int;
修改字段id的属性
alter table test_table change id id int not null auto_increment primary key;
0
赞
热门推荐
-
2、 - 优质文章
-
3、 gate.io
-
8、 golang
-
9、 openharmony
-
10、 Vue中input框自动聚焦