thefreebielife Posted July 5, 2007 Share Posted July 5, 2007 This is how my "uId" table is set up: <?php ALTER TABLE `users` CHANGE `uId` `uId` INT( 6 ) NOT NULL AUTO_INCREMENT ?> Currently its in the 7000's but i would like to bring it down to 2, 3, 4.. etc. But whenever I change the last person's uId, the next person who registers still has an uId in the 7000's. I cannot figure this out. Link to comment https://forums.phpfreaks.com/topic/58546-problem-with-incrementing/ Share on other sites More sharing options...
Wildbug Posted July 5, 2007 Share Posted July 5, 2007 From the MySQL manual on ALTER TABLE syntax: To change the value of the AUTO_INCREMENT counter to be used for new rows, do this: ALTER TABLE t2 AUTO_INCREMENT = value; You cannot reset the counter to a value less than or equal to any that have already been used. For MyISAM, if the value is less than or equal to the maximum value currently in the AUTO_INCREMENT column, the value is reset to the current maximum plus one. Link to comment https://forums.phpfreaks.com/topic/58546-problem-with-incrementing/#findComment-290378 Share on other sites More sharing options...
fenway Posted July 10, 2007 Share Posted July 10, 2007 But whenever I change the last person's uId, the next person who registers still has an uId in the 7000's. I cannot figure this out. Why on earth are you changing this??????? Link to comment https://forums.phpfreaks.com/topic/58546-problem-with-incrementing/#findComment-294622 Share on other sites More sharing options...
thefreebielife Posted July 10, 2007 Author Share Posted July 10, 2007 Because for some reason users are getting the same numbers across 5 db's. Its hard to explain. Link to comment https://forums.phpfreaks.com/topic/58546-problem-with-incrementing/#findComment-294628 Share on other sites More sharing options...
fenway Posted July 10, 2007 Share Posted July 10, 2007 Because for some reason users are getting the same numbers across 5 db's. Its hard to explain. Sounds like an auto-increment-increment issue. Link to comment https://forums.phpfreaks.com/topic/58546-problem-with-incrementing/#findComment-294649 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.