hi all
I have created a table with: id | message | date
at first, all seemed to work fine BUT the id (AUTO_INCREMENT) doesn't reset itself back to 1 when i delete all the rows, it continues counting from the last row

example
id message
1 xxxxx
2 xxxxx
3 xxxxx
now if i delete where id=3, and then insert a new row, it will look like this:
id message
1 xxxxx
2 xxxxx
4 xxxxx