mysql修改表为主键递增的示例代码:
alter table tb_name modify id int auto_increment primary key
意思:将tb_name表中id字段设置为主键并自动递增。