Google News
logo
MySQL - Interview Questions
How to set auto increment in MySQL?
Auto Increment is a constraint that automatically generates a unique number while inserting a new record into the table. Generally, it is used for the primary key field in a table. In MySQL, we can set the value for an AUTO_INCREMENT column using the ALTER TABLE statement as follows :

ALTER TABLE table_name AUTO_INCREMENT = value;
Advertisement