Table : Dummy
ACID int, // Autoincrement Columns with Primary Key
Accname Varchar(100)
The ACID of Dummy Table are always increase the value, it’s fine. But the problem is that it’s continue the ID No. after deletion. e.g.:
Expand|Select|Wrap|Line Numbers
- ACID accname
- -----------------
- 1 mahesh
- 2 mahendra
- 3 kirti
Now I deleted the above data from table and if I try to insert the new data on table than ACID start ID from No. “4” instead of No. “1”.
What to do for start ID at No. “1” again after deletion of old records from the table?