I am using the below T-SQL to create a table with a computed column which gives me IDs in 'BID(The Year)-0000'
. The issue is that I would like to reset the series of zeros in the ID when the year is changed.For example, the last ID in the table is BID2017-0923
when the year is changed I want the series to be reset for example 'BID2018-0001'
.
Here is the T-SQL which currently I am using.
CREATE TABLE Books
(
ID INT IDENTITY(1,1) NOT NULL PRIMARY KEY,
IDCreateDate DATETIME NOT NULL DEFAULT GETDATE(),
BookID AS ('BID' + LTRIM(YEAR(IDCreateDate)) + '-' + RIGHT('0000' + LTRIM(ID), 4)),
ISBN VARCHAR(32),
BookName NVARCHAR(50),
AuthorName NVARCHAR(50),
BLanguage VARCHAR(50),
StaId int,
StuId int,
CatNo int
);
UPDATE:
Furthermore, I would like the ID col to remembers its last id based on the year it has.For example, the last id in the column is BID2017-0920
when I change the year to 2010, it has to reset the number series for example BID2010-0001
but when I switch back the year to 2017, I don't want the series to be reset rather I want it to start from BID2017-0921
.
Edit#1: I've updated my solution according to latest OP's comments
Note#1: This solution work with pessimistic concurrency control (default behavior of SQL Server Database Engine)
Note#2: If we are reaching 10000 following piece of code
will raise an exception
Note#3: UPDATE statement could be encapsulated into a stored procedure with
@CustomSequenceName VARCHAR(50)
as input parameter and@GeneratedValue VARCHAR(50) OUTPUT
as OUT[PUT] parameter.Note#4: @LenOfNumber allows to customize length of sequential number (default is 4)
Edit#2:
UPDATE statement could be replaced with following combination of INSERT + UPDATE statements: