There's a way to reset auto-increment field when all rows is deleted from table?

I've noticed if i have 300 rows inside my table, and i execute

DELETE * FROM myTable;

When i insert new row after delete, auto increment count continue count from last value (also if table is empty. It's possible to reset auto increment count when all rows are deleted?

有帮助吗?

解决方案

You need to use TRUNCATE instead of DELETE
Like this: TRUNCATE myTable;

It also much faster than DELETE (especially on big tables)

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top