Answers for "set auto increment to 1"

SQL
1

mysql reset auto increment to 1

ALTER TABLE tablename AUTO_INCREMENT = 1
Posted by: Guest on December-07-2020
0

how insert auto increment

ALTER TABLE yourTableName
MODIFY yourColumnName INT NOT NULL AUTO_INCREMENT;
Posted by: Guest on April-27-2021

Code answers related to "set auto increment to 1"

Code answers related to "SQL"

Browse Popular Code Answers by Language