Jump to content

Problem with incrementing


thefreebielife

Recommended Posts

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
Share on other sites

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
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.