ALTER table by adding AUTOINCREMENT in MySQL?
Answers
Answered by
0
MySQL, the syntax to change the starting value for an AUTO_INCREMENT column using the ALTER TABLE statement is: ALTER TABLE table_name AUTO_INCREMENT = start_value; table_name.
Similar questions