alter table auto_increment mysql code example
Example 1: mysql alter column auto increment
ALTER TABLE document MODIFY COLUMN document_id INT auto_increment
Example 2: add auto_increment column to existing table mysql
ALTER TABLE `users` ADD `id` INT NOT NULL AUTO_INCREMENT PRIMARY KEY
ALTER TABLE `users` ADD `id` INT NOT NULL AUTO_INCREMENT UNIQUE FIRST
Example 3: auto_increment mysql
ALTER TABLE User AUTO_INCREMENT = 1;
Example 4: how to change the auto increment in existing table mysql
ALTER TABLE tbl_access ADD COLUMN `access_id` int(10) NOT NULL PRIMARY KEY AUTO_INCREMENT FIRST
Example 5: create table primary key auto increment mysql
define primary key auto increment
Example 6: mysql add auto increment id existing table
ALTER TABLE `users` ADD `id` INT NOT NULL AUTO_INCREMENT PRIMARY KEY