reset sql auto increment code example
Example 1: sql server reset auto increment
DBCC CHECKIDENT (mytable, RESEED, 0)
Example 2: mysql reset auto increment id
SET @num := 0;
UPDATE your_table SET id = @num := (@num+1);
ALTER TABLE your_table AUTO_INCREMENT =1;