Add Id Autoincrement Column To Existing Table Mysql Code Example


Example 1: 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 2: mysql add auto increment id existing table

ALTER TABLE `users` ADD `id` INT NOT NULL AUTO_INCREMENT PRIMARY KEY

Comments

Popular posts from this blog

Chemistry - Bond Angles In NH3 And NCl3

AspenTech InfoPlus 21 - How To Connect And Query Data

C/C++ Why To Use Unsigned Char For Binary Data?