Here is a snippet of my table creation code:
CREATE TABLE members (
member_id INT(7) ZEROFILL PRIMARY KEY AUTO_INCREMENT NOT NULL UNSIGNED,
...
XXXXXXXX
};
My problem is that I don't want the first entry to be given the value of "0000001", but start at "0000100", or "100" instead of "1". I read awhile back something about putting the code "AUTO_INCREMENT = 100" in place of the "XXXXXXX" above, but that doesn't work for me.
Anyone know?