mysql中设置某个表中的某个字段为递增主键

alter   table   tablename modify   filedname  int(11)   auto_increment ,add primary key (filedname);

tablename替换为表名,filedname替换为想要设置递增主键的字段名,11替换为数据长度。