alter table tablename add id int(10) not null;//不自增,自增的话还要加auto_increment=1;Alter table tb add primary key(id);