This article mainly introduces the sql serial number acquisition code example. The example code is introduced in great detail in the article, which has a certain reference value for everyone's study or work. Friends in need can refer to it. It is often used to generate order numbers and other serial numbers. SQL Server implements serial numbers as follows: Table tb_b_Seq (serial number table): CREATE TABLE tb_b_Seq( Year int, -- year Month int, -- month Attr varchar(50), -- attribute Seq int -- serial number) Get the serial number through the stored procedure: create Proc GetSeq ( @attr varchar(50), @year int, @month int, @Return int output ) As set @Return=(select top 1 Seq from tb_b_Seq where Attr=@attr and MONTH=@month and YEAR=@year) if(@Return is null) begin set @Return=1 insert into FMDS_tb_b_Seq (Attr,Year,Month,Seq) values (@attr,@year,@month,@Return) end else begin set @Return=@Return+1 update FMDS_tb_b_Seq set Seq=@Return where Attr=@attr and MONTH=@month and YEAR=@year end test: declare @ret int exec GetSeq 'Contract',2017,10,@ret print @ret The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM. You may also be interested in:
|
<<: jQuery implements shopping cart function
>>: Linux /etc/network/interfaces configuration interface method
How to add css in html? There are three ways to s...
Jellyka BeesAntique Handwriting [ank]* Jellyka Cut...
This article shares the specific code of JS to ac...
Result: Implementation Code html <div id="...
background When we want to log in to the MySQL da...
WeChat Mini Program Component Design Specificatio...
Preface: Use the element framework in vue3.0, bec...
Preface The company's Ubuntu server places th...
Mysql5.5 dual machine hot standby Implementation ...
Port mapping is not the only way to connect Docke...
Recently, I have been working on a project and ne...
1: Install mongodb in docker Step 1: Install mong...
The default operating mode of MySQL is autocommit...
CSS has two pseudo-classes that are not commonly ...
This article shares the specific code of JavaScri...