SQL怎样自动生成编号格式如YYYYMM+类别+编号 20
1个回答
展开全部
1:在有自增列的情况
if object_id('tb') is not null
drop table tb
go
create table tb
(id int identity,
name varchar(10),
code as 'BH'+right('0000'+cast(id as varchar),5))
2:没有自增列的情况
SELECT 'BH'+RIGHT(1000001+ISNULL(RIGHT(MAX(BH),6),0),6) FROM tb
你这种情况要写一个复杂的存储过程解决
if object_id('tb') is not null
drop table tb
go
create table tb
(id int identity,
name varchar(10),
code as 'BH'+right('0000'+cast(id as varchar),5))
2:没有自增列的情况
SELECT 'BH'+RIGHT(1000001+ISNULL(RIGHT(MAX(BH),6),0),6) FROM tb
你这种情况要写一个复杂的存储过程解决
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询