首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > asp.net >

用sql语句判断时间段,该如何解决

2013-10-21 
用sql语句判断时间段我想用sql判断我现在的时间 在不在某个时间段 怎么来实现 请各位大侠指点 谢谢![解决

用sql语句判断时间段
我想用sql判断我现在的时间 在不在某个时间段 怎么来实现 请各位大侠指点 谢谢!
[解决办法]
select * from tablename where
datediff(d,时间字段,getdate())=0 and
datepart(h,时间字段)>=9  and datepart(h,时间字段)<=12
[解决办法]
select dateName(hh,getdate()) +':'+  dateName(Mi,getdate()) +':'+  dateName(Second,getdate())       --获取系统当前时间 如15:12:38

比较的话...等待高人出现
[解决办法]

SELECT CONVERT(DATETIME,CONVERT(varchar,GETDATE(),101)+' 09:00:000')
--2012-07-18 09:00:00.000

热点排行