自動生成編號的方法
當前位置:點晴教程→知識管理交流
→『 技術文檔交流 』
[p]前言:[br]用過許多序號的方法,indentity 或 new id() ,都不好用,自己寫了一個,這個序號的特點是:每次取相應表中的系統當天最大序號,如果當天無記錄,則自動生成一個當天序號 [/p]
[p][br]1.建種子表,這個表用來保存各個表目前已使用到的最大序號.[br]--種子表[br]create table seed ([br]bm varchar(20) not null, --表名[br]bh varchar(12) not null, --種子編號[br]constraint pk_seed primary key(bm)[br])[br]go[/p] [p]2.當我們建一個新表時,同時把這個表名記錄到種子表中,如:[br]--向種子中表添加記錄[br]insert into seed (bm,bh) values('tablename','200211070000')[br]go[/p] [p]3.在數據庫建一存儲過程,自動生成新編號,此編號取當天時間,所以許多時候查詢某些天的記錄時,這個序號非常有用[br]--為參數傳遞來的某個表自動生成編號[br]if exists (select * from sysobjects where name='proc_getbh')[br]drop procedure proc_getbh [br]go[br]create procedure proc_getbh @bm varchar(20) [br]as[br]declare @bh char(12)[br]declare @today char(8)[br]begin[br]select @today=convert(char(8),getdate(),112)[br]select @bh=bh from seed where [url=mailto:bm=@bm]bm=@bm[/url][br]if @bh is null or left(@bh,8)<>@today[br]begin[br]select @bh=@today+'0000'[br]end [br]select @bh=left(@bh,8)+ right('0000' + ltrim(convert(char(4),convert(int,right(@bh,4)))+1),4)[br]update seed set [url=mailto:bh=@bh]bh=@bh[/url] where [url=mailto:bm=@bm]bm=@bm[/url][br]select @bh as bh[br]end[/p] [p]4.實例如下:[br]'對表xxx自動生成新編號[br]set rs=conn.execute("proc_getbh @bm='xxx'")[br]這樣,rs("bh")就是你得到的新編號[/p] 該文章在 2010/7/5 0:10:41 編輯過 |
關鍵字查詢
相關文章
正在查詢... |