I'm creating a new table from scratch through scripting - first, I'm dropping it (in case it already exists):
DROP TABLE IF EXISTS `myTable`
then I'm creating it:
CREATE TABLE IF NOT EXISTS `myTable` (
`id` int(11) NOT NULL AUTO_INCREMENT,
... and so on
The problem: for some strange reason, my autoID-field ALWAYS starts at 2028 instead of 1, although I'm generating it from scratch. What is wrong?