Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save thewinterwind/cca2ad611abb6c98c959 to your computer and use it in GitHub Desktop.
Save thewinterwind/cca2ad611abb6c98c959 to your computer and use it in GitHub Desktop.
Add primary key after table already exists (MySQL)
ALTER TABLE XXX add column id INT NOT NULL AUTO_INCREMENT FIRST, ADD primary KEY Id(id)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment