Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Hi I have a dataset and I want to start and auto increment field at 5 not 1 is this possible?

cheers

JJ

share|improve this question

2 Answers

up vote 43 down vote accepted

You can use ALTER TABLE to change the auto_increment value:

ALTER TABLE tbl AUTO_INCREMENT = 5;

See the MySQL reference for more details.

share|improve this answer
is it possible to do this dynamically with a result from a select ? – gpilotino May 2 '11 at 13:03
2  
Anyone know if it is possible to do WITHOUT an ALTER? – thesmart Jul 23 '12 at 22:15
Yes, it's possible. See my reply. – cosimo Sep 13 '12 at 7:03

Yes, you can use the ALTER TABLE t AUTO_INCREMENT = 42 statement. However, you need to be aware that this will cause the rebuilding of your entire table, at least with InnoDB. If you have an already existing dataset with millions of rows, it could take a very long time to complete.

In my experience, it's better to do the following:

BEGIN WORK;
-- You may also need to add other mandatory columns and values
INSERT INTO t (id) VALUES (42);
ROLLBACK;

In this way, even if you're rolling back the transaction, MySQL will keep the auto-increment value, and the change will be applied instantly.

You can verify this by issuing a SHOW CREATE TABLE t statement. You should see:

> SHOW CREATE TABLE t \G
*************************** 1. row ***************************
       Table: t
Create Table: CREATE TABLE `t` (
...
) ENGINE=InnoDB AUTO_INCREMENT=42 ...
share|improve this answer
1  
THANKS! SET foreign_key_checks = 0; is also useful for this. – dnozay Mar 13 at 19:26

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.