增加列:
SQL增加删改列alter table SeekWorker add BornID varchar(30not null default ''
修改列:
SQL增加删改列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,......)


相关文章:

  • 2022-12-23
  • 2022-02-18
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-11-27
  • 2022-12-23
  • 2021-12-12
  • 2022-03-06
  • 2022-12-23
  • 2021-11-30
相关资源
相似解决方案