我想在一个时间段内然后按照间隔时间来查询数据
select * from 监控温度表 where 监控温度表.时间 between '" + Str(dtStart.Value) + "'AND '" + Str(dtEnd.Value) + "'order by id
这个是在一个时间段内查询,现在要加个时间间隔来查询,不知所云,望高手解答
其中dtStart.Value和dtEnd.Value是DTPicker1控件
举例:比如说我查询时间段在 2007-1-5 19:03:31到2007-4-8 10:38:21以为在这之间没隔几秒就有一个数据现在不想让他全取出来,我要个5分钟或者多少时间取一个数据。如现在我2007-1-5 19:03:31有个记录,下个记录就直接是2007-1-5 19:08:31这个记录(如没这么记录就在这个记录的前后最接近取个记录),而在2007-1-5 19:03:31置2007-1-5 19:08:31很多数据就不显示出来了,谢谢各位啊
try
select * from 监控温度表 A where 时间 between '" + Str(dtStart.Value) + "'AND '" + Str(dtEnd.Value) + "' And Not Exists (Select 时间 From 监控温度表 Where DateDiff(mi, 时间, A.时间) =5 ) order by id
我想那个间隔时间是可以改的
比如加个text
text1.text=间隔时间
先谢谢楼上的
將text1.text加進去,試下這個,
select * from 监控温度表 A where 时间 between '" + Str(dtStart.Value) + "'AND '" + Str(dtEnd.Value) + "' And Not Exists (Select 时间 From 监控温度表 Where DateDiff(mi, 时间, A.时间) = " + Str(text1.text) + ") order by id
就是這麼寫
Select * From 监控温度表 Where 监控温度表.时间 between '" + Str(dtStart.Value) + "'AND '" + Str(dtEnd.Value) + "' And DateDiff(mi,'" + Str(dtStart.Value) + "',时间) % " + Str(text1.text) + "=0 Order By id