SqlServer给一个表增加多个字段语法
Posted 艺非凡
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SqlServer给一个表增加多个字段语法相关的知识,希望对你有一定的参考价值。
添加字段语法
alter table table_name add column_name +字段类型+ 约束条件
给一个表增加多个字段:
use NatureData go alter table XunHu add MaleCount varchar(50) null, FemaleCount varchar(50) null, SubadultCount varchar(50) null, LarvaeCount varchar(50) null, TraceType varchar(50) null, MountainArea varchar(50) null, BehaviourType varchar(50) null, Area varchar(50) null, Phenology varchar(50) null; go
以上是关于SqlServer给一个表增加多个字段语法的主要内容,如果未能解决你的问题,请参考以下文章