SQL复杂ID自动增长问题

时间:2022-09-19 16:54:48
假如一张表中有一项ID  最大值为YKD001  我想再下次我插入下条记录的时候 该记录的ID变成YKD002  请高手帮助一下

4 个解决方案

#1


假设表名为TB,主键名为ID

DECLARE @ID VARCHAR(50)
SELECT @ID='YKD'+RIGHT('000'+CONVERT(VARCHAR(50),CONVERT(INT,STUFF(ID,1,3,''))+1),3)
FROM TB
SELECT @ID

#2


流水号自增。

#3


在学习中遇到这个问题 
数据库里有编号字段 
BH00001 
BH00002 
BH00003 
BH00004 
如何实现自动增长

 

--下面的代码生成长度为8的编号,编号以BH开头,其余6位为流水号。
--得到新编号的函数
CREATE FUNCTION f_NextBH()
RETURNS char(8)
AS
BEGIN
    RETURN(SELECT 'BH'+RIGHT(1000001+ISNULL(RIGHT(MAX(BH),6),0),6) FROM tb WITH(XLOCK,PAGLOCK))
END
GO

--在表中应用函数
CREATE TABLE tb(
BH char(8) PRIMARY KEY DEFAULT dbo.f_NextBH(),
col int)

--插入资料
BEGIN TRAN
    INSERT tb(col) VALUES(1)
    INSERT tb(col) VALUES(2)
    INSERT tb(col) VALUES(3)
    DELETE tb WHERE col=3
    INSERT tb(col) VALUES(4)
    INSERT tb(BH,col) VALUES(dbo.f_NextBH(),14)
COMMIT TRAN

--显示结果
SELECT * FROM tb
/*--结果
BH         col 
---------------- ----------- 
BH000001  1
BH000002  2
BH000003  4
BH000004  14
--*/

 

create table tb
(id int identity,
name varchar(10),
code as 'BH'+right('0000'+cast(id as varchar),5))
go
insert tb(name) select 'A'
union all select 'B'
union all select 'C'
union all select 'D'

select * from tb

drop table tb

/*
id          name       code         
----------- ---------- ------------ 
1           A          BH00001
2           B          BH00002
3           C          BH00003
4           D          BH00004

(所影响的行数为 4 行)
*/

#4


--建议楼主还是用identity吧
declare @table table
(
id int identity,
name varchar(10)
)
insert into @table
select 'a' union all
select 'b'

declare @maxlength int
set @maxlength = (select max(id) from @table)

select number = 'YKD' + right(replicate('0', @maxlength) + cast(id as varchar(10)), @maxlength+3)
from @table
/*
number
YKD001
YKD002
*/

#1


假设表名为TB,主键名为ID

DECLARE @ID VARCHAR(50)
SELECT @ID='YKD'+RIGHT('000'+CONVERT(VARCHAR(50),CONVERT(INT,STUFF(ID,1,3,''))+1),3)
FROM TB
SELECT @ID

#2


流水号自增。

#3


在学习中遇到这个问题 
数据库里有编号字段 
BH00001 
BH00002 
BH00003 
BH00004 
如何实现自动增长

 

--下面的代码生成长度为8的编号,编号以BH开头,其余6位为流水号。
--得到新编号的函数
CREATE FUNCTION f_NextBH()
RETURNS char(8)
AS
BEGIN
    RETURN(SELECT 'BH'+RIGHT(1000001+ISNULL(RIGHT(MAX(BH),6),0),6) FROM tb WITH(XLOCK,PAGLOCK))
END
GO

--在表中应用函数
CREATE TABLE tb(
BH char(8) PRIMARY KEY DEFAULT dbo.f_NextBH(),
col int)

--插入资料
BEGIN TRAN
    INSERT tb(col) VALUES(1)
    INSERT tb(col) VALUES(2)
    INSERT tb(col) VALUES(3)
    DELETE tb WHERE col=3
    INSERT tb(col) VALUES(4)
    INSERT tb(BH,col) VALUES(dbo.f_NextBH(),14)
COMMIT TRAN

--显示结果
SELECT * FROM tb
/*--结果
BH         col 
---------------- ----------- 
BH000001  1
BH000002  2
BH000003  4
BH000004  14
--*/

 

create table tb
(id int identity,
name varchar(10),
code as 'BH'+right('0000'+cast(id as varchar),5))
go
insert tb(name) select 'A'
union all select 'B'
union all select 'C'
union all select 'D'

select * from tb

drop table tb

/*
id          name       code         
----------- ---------- ------------ 
1           A          BH00001
2           B          BH00002
3           C          BH00003
4           D          BH00004

(所影响的行数为 4 行)
*/

#4


--建议楼主还是用identity吧
declare @table table
(
id int identity,
name varchar(10)
)
insert into @table
select 'a' union all
select 'b'

declare @maxlength int
set @maxlength = (select max(id) from @table)

select number = 'YKD' + right(replicate('0', @maxlength) + cast(id as varchar(10)), @maxlength+3)
from @table
/*
number
YKD001
YKD002
*/