MySQL修改表:新增自增主键

alter table dim_data_dic add dic_id int not null auto_increment comment '字典主键' ,add primary key(dic_id);

你可能感兴趣的:(mysql,数据库)