Answers for "can you reset the auto increment in sql"

SQL
5

sql server reset auto increment

DBCC CHECKIDENT (mytable, RESEED, 0)
Posted by: Guest on September-17-2020
1

sql reset auto increment

ALTER TABLE tmp AUTO_INCREMENT = 3;
Posted by: Guest on April-20-2020

Code answers related to "can you reset the auto increment in sql"

Code answers related to "SQL"

Browse Popular Code Answers by Language