直播中
1.建種子表,這個(gè)表用來保存各個(gè)表目前已使用到的最大序號
--種子表
create table SEED (
BM varchar(20) not null, --表名
BH varchar(12) not null, --種子編號
constraint PK_SEED primary key(BM)
)
go
2.當(dāng)我們建一個(gè)新表時(shí),同時(shí)把這個(gè)表名記錄到種子表中,如:
--向種子中表添加記錄
insert into SEED (BM,BH) values('tablename','200211070000')
go
3.在數(shù)據(jù)庫建一存儲過程,自動(dòng)生成新編號,此編號取當(dāng)天時(shí)間,所以許多時(shí)候查詢某些天的記錄時(shí),這個(gè)序號非常有用
--為參數(shù)傳遞來的某個(gè)表自動(dòng)生成編號
if exists (select * from sysobjects where name='proc_getbh')
drop procedure proc_getbh
go
create procedure proc_getbh @BM varchar(20)
as
declare @BH char(12)
declare @TODAY char(8)
begin
select @TODAY=convert(char(8),getdate(),112)
select @BH=BH from SEED where BM=@BM
if @BH is null or left(@BH,8)<>@TODAY
begin
select @BH=@TODAY+'0000'
end
select @BH=left(@BH,8)+ right('0000' + ltrim(convert(char(4),convert(int,right(@BH,4)))+1),4)
update SEED set BH=@BH where BM=@BM
select @BH AS BH
end
4.實(shí)例如下:
'對表xxx自動(dòng)生成新編號
set rs=conn.execute("proc_getbh @BM='xxx'")
這樣,rs("BH")就是你得到的新編號