Jump to content

id


adt2007

Recommended Posts

hiii

 

im editing an old scriptof mine, and i want to "restart" the id system

 

what i mean is, for example, the next person to register their id will be 229.

 

how do i edit the mysql database so it starts from 1 again?

i've removed all users.

Link to comment
Share on other sites

mysql internally keeps record of auto-incrementing values.. i'm sure you could look it up.. I personally haven't dealt w/ it before.. is there any specific reason you want to start it over? It doesnt really effect anything.

Link to comment
Share on other sites

Two way.  If you're deleting all of the data in the table, you can use the TRUNCATE command:

 

truncate tablename

 

That deletes everything, and resets the auto_increment field to 0

 

Or:

 

ALTER TABLE tablename AUTO_INCREMENT=0;

Link to comment
Share on other sites

thanks everyone!

 

Two way.  If you're deleting all of the data in the table, you can use the TRUNCATE command:

 

truncate tablename

 

That deletes everything, and resets the auto_increment field to 0

 

Or:

 

ALTER TABLE tablename AUTO_INCREMENT=0;

 

where do i enter the command?

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.