alter table table_name rename column oldname to newname
column出错
是这样写的吗,我怎么在帮助里没找到rename的解释阿

解决方案 »

  1.   

    A. 重命名表
    下例将表 customers 重命名为 custs。EXEC sp_rename 'customers', 'custs'B. 重命名列
    下例将表 customers 中的列 contact title 重命名为 title。EXEC sp_rename 'customers.[contact title]', 'title', 'COLUMN'
      

  2.   

    重命名数据库
    下例将数据库 accounting 改名为 financial。EXEC sp_renamedb 'accounting', 'financial'
      

  3.   

    alter table  alter culumn ......