如何用sql语言创建自动增长的列?

如何用sql语言创建自动增长的列?,第1张

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.

自动增长列(auto_increment)

sqlserver数据库

(identity)

oracle数据库(

sequence)

给主键添加自动增长的数值,列只能是整数类型

CREATE

TABLE

stu(

classId

int

primary

key

auto_increment,

name

varchar(50)

)

auto_increment是用于主键自动增长的,从1开始增长,当你把第一条记录删除时,再插入第二跳数据时,主键值是2,不是1

_____________________________________________________

INSERT

INTO

student(name)

values(‘abc’)

闫焱琢.

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

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/11662277.html

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

发表评论

登录后才能评论

评论列表(0条)

保存