读书人

在指定的位置平添列

发布时间: 2012-07-27 11:03:00 作者: rapoo

在指定的位置添加列

--允许系统标更新exec sp_configure 'allow updates','1'goreconfigure with overridego----添加列ALTER TABLE dbo.GoodsPrinter ADD GoodsStallId NVARCHAR(100)--把第一列之后的列往后移1(colid从1开始)update syscolumns set colid=colid+1 where colid>=2 and id = object_id('GoodsPrinter')--更新列顺序update syscolumns set colid=2 where name='GoodsStallId' and id=object_id('GoodsPrinter')--禁用系统标更新exec sp_configure 'allow updates','0'goreconfigure with overrideGO

?

读书人网 >其他数据库

热点推荐