关于修改SQL Server2005数据库的名称及表名,列名,索引名 修改数据库名称A为B: a
列名修改绝对不能使用SP_raname
你可以这样做
1、select 旧列名1 as 新列名1,旧列名2 as 新列名2,旧列名3 as 新列名3 ... into 新表名 from 表名
2、drop table 表名
索引,需要重新创建
列名修改绝对不能使用SP_raname
你可以这样做
1、select 旧列名1 as 新列名1,旧列名2 as 新列名2,旧列名3 as 新列名3 ... into 新表名 from 表名
2、drop table 表名
索引,需要重新创建