创建数据库的时候没有使用id作为主键,后来发现又要添加,研究了一番,这里记录一下:

如果有id字段,先:ALTER TABLE `upload_record` drop column `id`;
ALTER TABLE `table1` add column `id` bigint not null first;
alter table `table1` drop primary key;
ALTER TABLE `table1` MODIFY COLUMN `id` bigint NOT NULL AUTO_INCREMENT PRIMARY KEY;