hao-1234-1234

转载来源:https://www.cnblogs.com/qinyi173/p/7561680.html

添加字段语法

alter table table_name add column_name +字段类型+ 约束条件

给一个表增加多个字段:

复制代码
use NatureData
go
alter table XunHu add 
ID int identity (1,1), MaleCount varchar(50) null, Area varchar(50) not null, Phenology int null; go
复制代码

 

分类:

技术点:

相关文章:

  • 2021-08-15
  • 2021-12-15
  • 2021-12-31
  • 2021-07-19
  • 2021-08-15
  • 2021-08-15
  • 2021-11-28
  • 2021-09-25
猜你喜欢
  • 2021-08-15
  • 2021-08-15
  • 2021-08-15
  • 2021-08-15
  • 2021-08-25
  • 2021-08-15
  • 2021-10-15
相关资源
相似解决方案