SQLite Forum

How to reset auto increment on DB browser
Login
That would be:

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

In SQL double-quotes are for identifiers and single-quotes are for strings.