在SQL2005中,怎样可以更改表的名字?在SQL2005中,怎样可以更改表的名字?[解决办法]exec sp_renamedb 'test ', 'test1这个是更改库的名字啦[解决办法]EXEC sp_rename 'oldtabname', 'newtabname';GO