用sql语句修改表名和列名

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

注:已添加的列将无法删除 

原文地址:https://www.cnblogs.com/glacierh/p/1274778.html