Lets say I have 3 tables in the data base, I want the AI to start from 1 again,do I have to do every table individual or is there a way to do all of them together.
Code: Select all
ALTER TABLE antiques AUTO_INCREMENT = 1Code: Select all
ALTER TABLE antiques , users , members AUTO_INCREMENT = 1Is it possible to do that?