求教在sqlserver2008中的表中怎么添加一列自增的列?

求教在sqlserver2008中的表中怎么添加一列自增的列?,第1张

1、例如给某表添加一个Num自增列,这张表已经有很多行数据了,通过sqlserver表设计器,添加一个新字段Num,如图所示,

2、添加字段后,点击保存,会d出一个小框“不允许保存更改。所做的更改要求删除并重新创建一下表”,这个要求不能满足啊,这么多的数据,删除了怎么办?

3、点击SQL Server Management Studio顶部的菜单【工具】->【选项】,

4、打开【选项】d窗界面如图所示,默认展开的是【常规】选项,

5、拖动左侧的菜单,找到并点击【表设计器】->【表设计器和数据库设计器】,

6、在右侧出现的【表选项】中,找到并 取消勾选【阻止保存要求重新创建表的更改】,点击【确定】按钮,

7、再次在表设计界面,点击保存,如果表中的数据量很大的话,会有这个验证警告:“将定义更改保存到包含有大量数据的表中可能需要很长时间”,此项可以忽略,

8、直接点击【是】按钮,就可以保存成功了。

CREATE

TABLE

[表名]

(

[AUTOID]

[int]

IDENTITY

(1,

1)

NOT

NULL

,

[列名]

[varchar]

(50)

COLLATE

Chinese_PRC_CI_AS

NULL

)

ON

[PRIMARY]

GO

能看明白吗?[AUTOID]

[int]

IDENTITY

(1,

1)

NOT

NULL

就是自动增长的字段,自动加1.

如果该字段不是主键,需要先设置该字段为主键:

alter table 表名 add primary key(字段名)

修改字段为自动增长

alter table 表名 change 字段名 字段名 字段类型 auto_increment

select 自增列=identity(int,1,1),* into #tb from tableName

drop table tabelNameselect * into tableName from #tbdrop table #tb 其实可以直接在数据库中修改表的结构,增加一列(就是内容递增的那列),把这列设为标识列,自动递增1。保存一下就行了。

在sql2000中可以这样,不过感觉不怎么好...如果表中关系多了,不建议这样用if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[p_setid]') and OBJECTPROPERTY(id, N'IsProcedure') = 1)

drop procedure [dbo].[p_setid]

GO

--将表中的某个字段转换成标识字段,并保留原来的值

--注意,因为要删除原表,所以,如果表和其他表的关联,这些关联要重新创建

--调用示例

exec p_setid '表名','要转换的字段名'

--*/

CREATE PROC P_SETID

@tbname sysname, --要处理的表名

@fdname sysname --要转换为标识字段的字段名

as

declare @s1 varchar(8000),@s2 varchar(8000),@tmptb sysname

select @s1='',@s2='',@tmptb='[tmp_'+@tbname+'_bak]'

select @s1=@s1+',['+name+']'

+case name when @fdname then '=identity(bigint,1,1)' else '' end

,@s2=@s2+',['+name+']'

from syscolumns where object_id(@tbname)=id

select @s1=substring(@s1,2,8000),@s2=substring(@s2,2,8000)

exec('select top 0 '+@s1+' into '+@tmptb+' from ['+@tbname+']

set identity_insert '+@tmptb+' on

insert into '+@tmptb+'('+@s2+') select '+@s2+' from ['+@tbname+']

set identity_insert '+@tmptb+' off

')

exec('drop table ['+@tbname+']')

exec sp_rename @tmptb,@tbname

go

--使用测试

--创建测试的表

create table 表(编号 bigint,姓名 varchar(10))

insert into 表

select 1,'张三'

union all select 2,'李四'

union all select 4,'王五'

go

--调用存储过程,将编号字段改为标识字段

exec p_setid '表','编号'

go

--显示处理结果

select * from 表

--显示是否修改成功

select name from syscolumns

where object_id('表')=id and status=0x80

go

--删除测试

drop table 表


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/bake/11722746.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-18
下一篇 2023-05-18

发表评论

登录后才能评论

评论列表(0条)

保存