#清除主键 ALTER TABLE [table_name] DROP id; #重新生成 ALTER TABLE [table_name] ADD id INT NOT NULL PRIMARY KEY AUTO_INCREMENT FIRST;