博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
查询指定时间段的数据
阅读量:6331 次
发布时间:2019-06-22

本文共 693 字,大约阅读时间需要 2 分钟。

一、

select * from SearchDetails where SearchDateTime between '2014-10-06 01:40:50.123' and '2014-12-07 23:12'

and datepart(hour, SearchDateTime) between 1 and 12
--这里是字符串隐式转换为Datetime(尽量不要精确到毫秒,会有误差)

 

二、

select * from 表 where 日期字段>='开始日期' and 日期字段<='截止日期'

and convert(char(8),日期字段,108)>='开始时间' and convert(char(8),日期字段,108)<='截止时间'
例如:
select * from tb1 where dDate>='2010-11-05' and dDate<='2010-11-15'
and convert(char(8),dDate,108)>='22:30:00' and convert(char(8),dDate,108)<='23:00:00'

 

三、

表table1,字段d,如下

select * from table1
where year(d)=2010 and month(d)=7 and day(d) between 1 and 31
and (Datepart(hour,d)>=22 or Datepart(hour,d)<6)

 

转载于:https://www.cnblogs.com/Cengjianwei/p/10706932.html

你可能感兴趣的文章
杂题 NOIP2016蚯蚓
查看>>
关于kafka连接不上别的机器问题Connection refused
查看>>
课后作业-阅读任务-阅读提问-3
查看>>
【C语言】23-typedef
查看>>
Effective前端4:尽可能地使用伪元素
查看>>
去除重复的数据
查看>>
poj 2019 二维RMQ
查看>>
poj 1279 半平面交核面积
查看>>
win10下安装TensorFlow(CPU only)
查看>>
进程间通信的方式——信号、管道、消息队列、共享内存
查看>>
Potala(3)——Transaction
查看>>
cocos 锚点、包围盒
查看>>
RAM建模和初始化
查看>>
sql server 2008学习3 表组织和索引组织
查看>>
away3d 4.1 环境反射总结
查看>>
超越halcon速度的二值图像的腐蚀和膨胀,实现目前最快的半径相关类算法(附核心源码)。...
查看>>
MySql 修改列的注释信息的方法
查看>>
养成代码注释习惯,帮助你更好使用NetBeans导航器
查看>>
通过xmanager连接Centos的远程桌面
查看>>
Python logging 模块
查看>>