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

SQLServer生成时间范围

时间:2015-05-28 18:05:39      阅读:188      评论:0      收藏:0      [点我收藏+]

标签:sql server

前面写过类似的文章,这是开发时用的
if OBJECT_ID(N'tf_Data_TimeRange',N'FN') is not null
	drop function tf_Data_TimeRange
go

create function tf_Data_TimeRange(
	@startDate varchar(20), --开始日期
	@endDate varchar(20),   --结束日期
	@dataType int           --数据类型 1:小时 2:日
) returns @temp table(orderby int,MonitorTime varchar(20))
as
/********************************
--function:递归生成时间段
--author:zhujt
--create date:2015-5-28 17:07:11
*********************************/
begin
	if @dataType=1 
		begin
			with temp(orderby,vdate) as
			(select 1 orderby,convert(varchar(20),@startDate,120)
			  union all
			 select orderby+1, convert(varchar(20),dateadd(HOUR,1,vdate),120) 
			   from temp 
			  where vdate < @endDate
			 ) 
			insert into @temp(orderby,MonitorTime)
			select orderby,vdate from temp
			OPTION (MAXRECURSION 0) --排除限值
		end
	else if @dataType=2
		begin 
			set @endDate=convert(varchar(10),@endDate,120);
			
			with temp(orderby,vdate) as
			(select 1 orderby,convert(varchar(10),@startDate,120)
			  union all
			 select orderby+1, convert(varchar(10),dateadd(DD,1,vdate),120) 
			   from temp 
			  where vdate < @endDate
			 ) 
			insert into @temp(orderby,MonitorTime)
			select orderby,vdate from temp
			OPTION (MAXRECURSION 0) --排除限值
		end 
	return;
end

SQLServer生成时间范围

标签:sql server

原文地址:http://blog.csdn.net/mh942408056/article/details/46125811

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