CopyPastor

Detecting plagiarism made easy.

Score: 1; Reported for: String similarity Open both answers

Possible Plagiarism

Plagiarized on 2019-09-09
by Abhishek Thakur

Original Post

Original - Posted on 2012-01-19
by Niels



            
Present in both answers; Present only in the new answer; Present only in the old answer;

You can reset the counter with:
ALTER TABLE tablename AUTO_INCREMENT = 1
For InnoDB you cannot set the `auto_increment` value lower or equal to the highest current index. (quote from [ViralPatel][1]):
> Note that 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. For > InnoDB, if the value is less than the current maximum value in the > column, no error occurs and the current sequence value is not changed.
See *https://stackoverflow.com/q/2410689/367456* on how to dynamically get an acceptable value.

[1]: http://viralpatel.net/blogs/reseting-mysql-autoincrement-column/
You can reset the counter with:
ALTER TABLE tablename AUTO_INCREMENT = 1
For InnoDB you cannot set the `auto_increment` value lower or equal to the highest current index. (quote from [ViralPatel][1]):
> Note that 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. For > InnoDB, if the value is less than the current maximum value in the > column, no error occurs and the current sequence value is not changed.
See *https://stackoverflow.com/q/2410689/367456* on how to dynamically get an acceptable value.

[1]: http://viralpatel.net/blogs/reseting-mysql-autoincrement-column/

        
Present in both answers; Present only in the new answer; Present only in the old answer;