Skip to content

Instantly share code, notes, and snippets.

@imerr
Created December 22, 2014 01:15
Show Gist options
  • Select an option

  • Save imerr/d03015792792905bb69f to your computer and use it in GitHub Desktop.

Select an option

Save imerr/d03015792792905bb69f to your computer and use it in GitHub Desktop.
reset autoincrement id
ALTER TABLE `x` DROP `id`;
ALTER TABLE `x` AUTO_INCREMENT = 1;
ALTER TABLE `x` ADD `id` int UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY FIRST;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment