1.修改表中某列的类型:
alter table Product alter column Pd_Customno nvarchar(256) null
2.表中新增某列:
alter table Product add Pd_Customno nvarchar(256) null