SQL SERVER
新增列与默认值
alter table 表名 add 列明 bit default 0 not null
删除列(容易删除失败)
alter table 表名 drop column 列名