sqlServer为已存在表添加字段

添加自增字段
alter table [需要添加字段的表名称] add id int identity(1,1) not null;
添加多个字段
alter table [需要添加字段的表名称] add id int identity(1,1) not null,[addtime] datetime  NULL;


Jsky博客
请先登录后发表评论
  • 最新评论
  • 总共0条评论