auto incremnt sql code example
Example 1: sql query to make a existing column auto increment
Alter table table_name modify column_name datatype(length) AUTO_INCREMENT PRIMARY KEY
Example 2: mysql set id auto increment
ALTER TABLE users AUTO_INCREMENT=1001;
Example 3: create table primary key auto increment mysql
define primary key auto increment
Example 4: how to alter auto increment in sql
INSERT INTO Persons (Personid,FirstName,LastName)
VALUES (seq_person.nextval,'Lars','Monsen');