示例 A. 重命名表 下例将表 customers 重命名为 custs。 EXEC sp_rename 'customers', 'custs' B. 重命名列 下例将表 customers 中的列 contact title 重命名为 title。 EXEC sp_rename 'customers.[contact title]', 'title', 'COLUMN' 相关文章: 2022-12-23 2022-12-23 2021-07-24 2021-11-27 2022-01-11 2021-12-15 2022-01-04