I have this table Post with 1000 rows, where id_post is primary key Set to autoincrement
OLD
id_post | post
1 hi1
2 hi2
...
1000 hi1000
I deleted rows from 301 to 1000. So I have now a list of rows from 1 to 300.
NEW
id_post | post
1 hi1
2 hi2
...
300 hi300
PROBLEM
when trying to add a new row, id_post
starts at 1001, how do I reset the table and make it to start from 301?