码迷,mamicode.com
首页 > 数据库 > 详细

生成流水号(20060210-0001)的SQL函数

时间:2015-02-11 17:58:21      阅读:269      评论:0      收藏:0      [点我收藏+]

标签:

create table t_sql(id int identity(1,1),code char(13),[name] nvarchar(10))
go
create function f_createcode(@bid int,@d datetime)
returns char(13)
as 
    begin
    declare @code char(13)
    declare @c    int
    select @c=count(*) from t_sql
    set @code=replace(convert(char(10),@d,120),‘-‘,‘‘)+‘-‘+cast(right(10000+@c+@bid,4) as char(4))
    return(@code)
    end   
go
 
insert into t_sql(code,[name]) values(dbo.f_createcode(1,getdate()),‘ralph‘)
insert into t_sql(code,[name]) values(dbo.f_createcode(1,getdate()),‘king‘)
insert into t_sql(code,[name]) values(dbo.f_createcode(1,getdate()),‘andy‘)
insert into t_sql(code,[name]) values(dbo.f_createcode(1,getdate()),‘test‘)
 
select * from t_sql
 
go
drop function f_createcode
drop table t_sql

  

 

原文地址:http://blog.csdn.net/ldw701/article/details/597688

生成流水号(20060210-0001)的SQL函数

标签:

原文地址:http://www.cnblogs.com/chenghu/p/4286426.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!