Ok, I have a database table that I interface using PhP and this table has a column called PID which I have set to AUTO_INCREMENT. I have put 90 fields of data in the table and the auto_increment was working finr. However, The only problem is, I had to delete some colums (all above PID 74). But now, when I add new data onto the table, the PID gets updated as if I still had 90 fields. In otherwords, the next data I enter, the PID updates to 91, 92, 93, etc
Queston. How can I "reset" an Auto_increment column in my table, so that the next insert will increment the PID to 74?
Any help would be most appreciated,
Basil