Hey. Whats up? Ok I have a question that I am just curious to see if this can happen. I was wondering in MySQL if a field is set to Auto_increment can it be reset back to 0? Like lets say I inserted 2 entries just to make sure my code works. Now I deleted the two entries with the delete from class where class_id='1'; and delete from class where class_id='2'; When another entry comes into the database the id will be 3. How can I reset the counter? So when the next entry comes in it will be 1? Is that possible? Thanks in advance.
zig