前言:
用過許多序號的方法,indentity 或 new id() ,都不好用,自己寫了一個(gè),這個(gè)序號的特點(diǎn)是:每次取相應(yīng)表中的系統(tǒng)當(dāng)天最大序號,如果當(dāng)天無記錄,則自動(dòng)生成一個(gè)當(dāng)天序號
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")就是你得到的新編號
該文章在 2010/7/5 0:10:41 編輯過