Skip to content

Instantly share code, notes, and snippets.

@alexzhan
Created November 28, 2010 13:41
Show Gist options
  • Save alexzhan/718940 to your computer and use it in GitHub Desktop.
Save alexzhan/718940 to your computer and use it in GitHub Desktop.
add auto_increment id set primary
对于item_detail:
先用
alter table item_detail drop primary key;
删除原来的主键;
然后用:
alter table item_detail add column id int unsigned not null auto_increment primary key;
增加自增的主键id
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment