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
I've been playing with the remote development...
Automatically discover disks Configuration Key Va...
By default, PHP on CentOS 7 runs as apache or nob...
Table of contents Preface The principle of browse...
Preface In actual development, business requireme...
Some time ago, the blogger installed the Ubuntu s...
The method found on the Internet works The footer ...
ERROR 1290 (HY000) : The MySQL server is running ...
1. Problem There is a table as shown below, we ne...
ARGB is a color mode, which is the RGB color mode...
Table of contents 1. Page Layout 2. Image upload ...
Table of contents Preface Understanding a stack a...
Abstract: When people talk about MySQL performanc...
Table of contents 1. Write Webshell into outfile ...
Table of contents A chestnut to cover it Paramete...