语法:
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’;
注意:
建议设置值不为空,且要给默认值;
新加的字段在表中的位置似乎没法自定义。