sql server 常用sql语句

--删除约束

alter table productInfo drop constraint 约束名称

--删除列
alter table productInfo drop column 列名

--添加列
alter table productInfo add 列名 类型 default 默认值   with values

原文地址:https://www.cnblogs.com/unbreakable/p/3490152.html