SqlServer如何给表添加新的字段以及字段注释
程序员文章站
2022-03-09 14:29:07
语法: USE 数据库名ALTER TABLE 表名 ADD 字段名 类型 默认值 是否为空;EXEC sp_addextendedproperty N'MS_Description', N'注释内容', N'SCHEMA', N'dbo',N'TABLE', N'表名', N'COLUMN', N ......
语法:
use 数据库名
alter table 表名 add 字段名 类型 默认值 是否为空;
exec sp_addextendedproperty n'ms_description', n'注释内容', n'schema', n'dbo',n'table', n'表名', n'column', n'字段名';
事例:
use [gameagent]
alter table [gameagent].[dbo].[charge_consume] add card_consume int default(0) not null;
exec sp_addextendedproperty n'ms_description', n'房卡消耗', n'schema', n'dbo',n'table', n'charge_consume', n'column', n'card_consume';
注意:
建议设置值不为空,且要给默认值;
新加的字段在表中的位置似乎没法自定义。
上一篇: 榛子的功效和作用有哪些
下一篇: 都有哪些野菜可以吃呢