SQL serial number acquisition code example

SQL serial number acquisition code example

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:
  • Mybatis+mysql uses stored procedures to generate serial number implementation code
  • oracle (plsql) generates serial number
  • How to get the query time of MySQL SQL statement in PHP
  • ThinkPHP framework obtains the last executed SQL statement and variable debugging simple operation example
  • MySQL example of getting today and yesterday's 0:00 timestamp
  • mysql gets yesterday's date, today's date, tomorrow's date, and the time of the previous hour and the next hour

<<:  jQuery implements shopping cart function

>>:  Linux /etc/network/interfaces configuration interface method

Recommend

How to make a tar file of wsl through Docker

I've been playing with the remote development...

Detailed instructions for installing SuPHP on CentOS 7.2

By default, PHP on CentOS 7 runs as apache or nob...

In-depth understanding of JavaScript event execution mechanism

Table of contents Preface The principle of browse...

Detailed steps to modify MySQL stored procedures

Preface In actual development, business requireme...

VMware Tools installation and configuration tutorial for Ubuntu

Some time ago, the blogger installed the Ubuntu s...

Solution to secure-file-priv problem when exporting MySQL data

ERROR 1290 (HY000) : The MySQL server is running ...

Implementation of mysql data type conversion

1. Problem There is a table as shown below, we ne...

The difference and introduction of ARGB, RGB and RGBA

ARGB is a color mode, which is the RGB color mode...

Detailed explanation of js's event loop event queue in the browser

Table of contents Preface Understanding a stack a...

Detailed explanation of MYSQL large-scale write problem optimization

Abstract: When people talk about MySQL performanc...

Summary of various postures of MySQL privilege escalation

Table of contents 1. Write Webshell into outfile ...

A detailed discussion of evaluation strategies in JavaScript

Table of contents A chestnut to cover it Paramete...