Alter a MySQL column to be AUTO_INCREMENT

SqlMysqlAlter Table

Sql Problem Overview


I’m trying to modify a table to make its primary key column AUTO_INCREMENT after the fact. I have tried the following SQL, but got a syntax error notification.

ALTER TABLE document
ALTER COLUMN document_id AUTO_INCREMENT

Am I doing something wrong or is this not possible?

+--------------------+
| VERSION()          |
+--------------------+
| 5.0.75-0ubuntu10.2 |
+--------------------+

Sql Solutions


Solution 1 - Sql

ALTER TABLE document MODIFY COLUMN document_id INT auto_increment

Solution 2 - Sql

Roman is right, but note that the auto_increment column must be part of the PRIMARY KEY or a UNIQUE KEY (and in almost 100% of the cases, it should be the only column that makes up the PRIMARY KEY):

ALTER TABLE document MODIFY document_id INT AUTO_INCREMENT PRIMARY KEY

Solution 3 - Sql

In my case it only worked when I put not null. I think this is a constraint.

ALTER TABLE document MODIFY COLUMN document_id INT NOT NULL AUTO_INCREMENT;

Solution 4 - Sql

You must specify the type of the column before the auto_increment directive, i.e. ALTER TABLE document MODIFY COLUMN document_id INT AUTO_INCREMENT.

Solution 5 - Sql

The SQL to do this would be:

ALTER TABLE `document` MODIFY COLUMN `document_id` INT AUTO_INCREMENT;

There are a couple of reasons that your SQL might not work. First, you must re-specify the data type (INT in this case). Also, the column you are trying to alter must be indexed (it does not have to be the primary key, but usually that is what you would want). Furthermore, there can only be one AUTO_INCREMENT column for each table. So, you may wish to run the following SQL (if your column is not indexed):

ALTER TABLE `document` MODIFY `document_id` INT AUTO_INCREMENT PRIMARY KEY;

You can find more information in the MySQL documentation: http://dev.mysql.com/doc/refman/5.1/en/alter-table.html for the modify column syntax and http://dev.mysql.com/doc/refman/5.1/en/create-table.html for more information about specifying columns.

Solution 6 - Sql

AUTO_INCREMENT is part of the column's datatype, you have to define the complete datatype for the column again:

ALTER TABLE document
ALTER COLUMN document_id int AUTO_INCREMENT

(int taken as an example, you should set it to the type the column had before)

Solution 7 - Sql

You can do it like this:

 alter table [table_name] modify column [column_name] [column_type] AUTO_INCREMENT;

Solution 8 - Sql

You can use the following query to make document_id to increment automatically

ALTER TABLE document MODIFY COLUMN document_id INT auto_increment

It is preferred to make document_id primary key as well

ALTER TABLE document MODIFY COLUMN document_id INT auto_increment PRIMARY KEY;

Solution 9 - Sql

Below statement works. Note that you need to mention the data type again for the column name (redeclare the data type the column was before).

ALTER TABLE document
MODIFY COLUMN document_id int AUTO_INCREMENT;

Solution 10 - Sql

You can apply the atuto_increment constraint to the data column by the following query:

ALTER TABLE customers MODIFY COLUMN customer_id BIGINT NOT NULL AUTO_INCREMENT;

But, if the columns are part of a foreign key constraint you, will most probably receive an error. Therefore, it is advised to turn off foreign_key_checks by using the following query:

SET foreign_key_checks = 0;

Therefore, use the following query instead:

SET foreign_key_checks = 0;
ALTER TABLE customers MODIFY COLUMN customer_id BIGINT NOT NULL AUTO_INCREMENT;
SET foreign_key_checks = 1;

Solution 11 - Sql

AUTO_INCREMENT is part of the column's datatype, you have to define the complete datatype for the column again:

ALTER TABLE document
MODIFY COLUMN document_id int AUTO_INCREMENT

(int taken as an example, you should set it to the type the column had before)

Solution 12 - Sql

If none of the above works try this. This is what I did in MYSQL and yes, you need to write the column name (document_id) twice.

ALTER TABLE document
CHANGE COLUMN document_id document_id INT(11) NOT NULL AUTO_INCREMENT ;

Solution 13 - Sql

Setting column as primary key and auto_increment at the same time:

  mysql> ALTER TABLE persons MODIFY COLUMN personID INT auto_increment PRIMARY KEY;
    Query OK, 10 rows affected (0.77 sec)
    Records: 10  Duplicates: 0  Warnings: 0

    mysql>

Solution 14 - Sql

To modify the column in mysql we use alter and modify keywords. Suppose we have created a table like:

create table emp(
    id varchar(20),
    ename varchar(20),
    salary float
);

Now we want to modify type of the column id to integer with auto increment. You could do this with a command like:

alter table emp modify column id int(10) auto_increment;

Solution 15 - Sql

alter table tbl_user MODIFY COLUMN id int(10) auto_increment;

Solution 16 - Sql

Previous Table syntax:

CREATE TABLE apim_log_request (TransactionId varchar(50) DEFAULT NULL);

For changing the TransactionId to auto increment use this query

ALTER TABLE apim_log_request MODIFY COLUMN TransactionId INT auto_increment;

Solution 17 - Sql

Just like this:

alter table document modify column id int(11) auto_increment;

Solution 18 - Sql

As you are redefining the column again, you have to specify the datatype again and add auto_increment to it as it's a part of datatype.

ALTER TABLE `document` MODIFY COLUMN `document_id` INT AUTO_INCREMENT;

Solution 19 - Sql

Try the following:

ALTER TABLE table_name MODIFY COLUMN id datatype auto_increment;

Solution 20 - Sql

Since SQL tag is attached to the question I really think all answers missed one major point.

MODIFY command does not exist in SQL server So you will be getting an error when you run the

ALTER TABLE Satellites MODIFY COLUMN SatelliteID INT auto_increment PRIMARY KEY;

enter image description here

In this case you can either add new column as INT IDENTITY

ALTER TABLE Satellites
   ADD ID INT IDENTITY
       CONSTRAINT PK_YourTable PRIMARY KEY CLUSTERED;

OR

Fill the existing null index with incremental numbers using this method,

DECLARE @id INT
SET @id = 0 
UPDATE Satellites SET @id = SatelliteID = @id + 1 

Solution 21 - Sql

Use the following queries:

ALTER TABLE YourTable DROP COLUMN IDCol

ALTER TABLE YourTable ADD IDCol INT IDENTITY(1,1)

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionC. RossView Question on Stackoverflow
Solution 1 - SqlromanView Answer on Stackoverflow
Solution 2 - SqlRoland BoumanView Answer on Stackoverflow
Solution 3 - SqlRabia Naz khanView Answer on Stackoverflow
Solution 4 - SqlHåvard SView Answer on Stackoverflow
Solution 5 - SqlSteven OxleyView Answer on Stackoverflow
Solution 6 - SqlDan SoapView Answer on Stackoverflow
Solution 7 - SqlAditya KumarView Answer on Stackoverflow
Solution 8 - SqlAzhar ZafarView Answer on Stackoverflow
Solution 9 - Sqluser5082888View Answer on Stackoverflow
Solution 10 - SqlMeisam RasouliView Answer on Stackoverflow
Solution 11 - SqlKKKView Answer on Stackoverflow
Solution 12 - SqlSusieView Answer on Stackoverflow
Solution 13 - SqlNesimi TaghizadeView Answer on Stackoverflow
Solution 14 - Sqluser6596773View Answer on Stackoverflow
Solution 15 - SqlAminur RahmanView Answer on Stackoverflow
Solution 16 - SqlUsman YaqoobView Answer on Stackoverflow
Solution 17 - SqlapemostView Answer on Stackoverflow
Solution 18 - SqlOptimizerView Answer on Stackoverflow
Solution 19 - SqlKartik MadnaniView Answer on Stackoverflow
Solution 20 - SqlINDRAJITH EKANAYAKEView Answer on Stackoverflow
Solution 21 - SqlDoug CobainView Answer on Stackoverflow