Answers for "mysql alter table column to auto increment primary key"

SQL
-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
Posted by: Guest on November-03-2020

Code answers related to "mysql alter table column to auto increment primary key"

Code answers related to "SQL"

Browse Popular Code Answers by Language