用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