SQL语句查询特定时间段的数据怎么写

SQL语句查询特定时间段的数据怎么写


慕容3067478
浏览 509回答 1
1回答

慕哥9229398

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'
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

SQL Server