积累:收集常用sql

--重命名表 
--下例将表 customers 重命名为 custs。 
EXEC sp_rename 'customers', 'custs' 

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



原文地址:https://www.cnblogs.com/easeyeah/p/2369470.html