账单号应该在每个财政年度重新启动c#

时间:2016-12-28 05:52:10

标签: c#

我的财政年度是2016年4月1日 - 2017年3月31日= 2016-17

我从BL0001自动增加了Bill No。我正在获得最后一次插入记录billno并为新账单增加1。

SELECT TOP 1 billNo, billdate from Bill_Entry order by Id desc

但我需要在每个财政年度重置账单号码。

1 个答案:

答案 0 :(得分:-1)

使用它可能对您有用

DBCC CHECKIDENT('[TableName]', RESEED, NewNumber(as per your column datatype))
  

在插入新数据后执行此查询后,它将以刚刚给出的新序列开始

一些额外信息

  

如果number = 0,则在下一个插入中,自动增量字段将包含值1

Before giving auto increment number in above query, you have to make sure your existing table's auto increment column contain values less that number.