昨天有位學生問我“一個表已經建好了,能不能將裡面的一個字段改為自動增長?”,“能,但沒有必要去修改它,應該在建表的時候就設計好” 我說。 這時候他和另一位學生
討論起來。他覺得可以,另一位試過說不行。因為他們不是我帶班級的學生,他們也咨詢了自己的老師,所以我沒有再發表意見。
需求:
如何將一張表中個某一列修改為自動增長的。
解答:
1) 情景一:表中沒有數據, 可以使用 drop column然後再add column
alter table 表名 drop column 列名
alter table表名 add列名 int identity(1,1)
2) 情景二:表中已經存在一部分數據
/**************** 准備環境********************/ --判斷是否存在test表 if object_id(N'test',N'U') is not null drop table test --創建test表 create table test ( id int not null, name varchar(20) not null ) --插入臨時數據 insert into test values (1,'成龍') insert into test values (3,'章子怡') insert into test values (4,'劉若英') insert into test values (8,'王菲') select * from test /**************** 實現更改自動增長列********************/ begin transaction create table test_tmp ( id int not null identity(1,1), name varchar(20) not null ) go set identity_insert test_tmp on go if exists(select * from test) exec(' insert into test_tmp(id, name ) select id, name from test with(holdlock tablockx)') go set identity_insert test_tmp off go drop table test go exec sp_rename N'test_tmp' ,N'test' , 'OBJECT' go commit GO /****************驗證結果*****************/ insert into test values ('張曼') select * from test
總結:在表設計界面修改最為簡單。如果該列已有的數據中存,修改可能會引發異常,可以使用數據導入導出的方式解決。總之,不管使用何種方式,都需求提前對數據做好備份。
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 ......余下全文>>
改為自增列,應該還沒有數據吧?否則應該也沒辦法改了。我覺得簡單些可以刪了再加,呵呵alter table aaa drop column b
alter table aaa add b int identity(1,1)