--删除约束
alter table productInfo drop constraint 约束名称
--删除列
alter table productInfo drop column 列名
--添加列
alter table productInfo add 列名 类型 default 默认值 with values
--删除约束
alter table productInfo drop constraint 约束名称
--删除列
alter table productInfo drop column 列名
--添加列
alter table productInfo add 列名 类型 default 默认值 with values