欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  数据库

生成按日期编码的编码格式 SQL语句

程序员文章站 2022-05-13 18:01:55
...
生成按日期编码的编码格式 sql语句
sqlparameter[] parameters = {

new sqlparameter("@dateday", sqldbtype.nvarchar,10)

};

parameters[0].value = system.datetime.now.tostring("yymmdd");
string strsql = @"declare @id nvarchar(20)
select @id=isnull(max(cast(right(id,5) as int)),0)+1
from chicrwh.storehouse.inwarehouse with(nolock)
where charindex(@dateday, id)=2
set @id='b'+@dateday+right() select @id";