SQLite Forum

How to reset auto increment on DB browser
Login
You cannot use ALTER TABLE for that. The autoincrement counter is stored in a separate table named "sqlite_sequence". You can modify the value there:

`UPDATE sqlite_sequence SET seq=1 WHERE name="<table>"`