alter table SeekWorker add BornID varchar(30) not null default ''
修改列:alter table CorpInf alter column CorpBriefing varchar(4000)
删除列:alter table TSUserBangSale drop column CarryNo
删除主键
alter table 表名 drop constraint 主键名
增加主键
alter table 表名 add constraint 主键名 primary key (列1,列2,......)