set auto increment value code example
Example 1: how insert auto increment
ALTER TABLE yourTableName
MODIFY yourColumnName INT NOT NULL AUTO_INCREMENT;
Example 2: create table primary key auto increment mysql
define primary key auto increment
ALTER TABLE yourTableName
MODIFY yourColumnName INT NOT NULL AUTO_INCREMENT;
define primary key auto increment