1、alter修改表

    1. --alter table 进行修改
    2. 添加一列
    3. alter table productinfos add proremark nvarchar(max) null
    4. 删除一列
    5. alter table productinfos drop column proremark
    6. 修改一列
    7. alter table productinfos alter column prono nvarchar(50) null
    8. 修改列名
    9. exec sp_rename 'productinfos.procount','count','column'