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

怎么查询一段时间内按一定间隔出现的数据

2012-02-08 
如何查询一段时间内按一定间隔出现的数据采集数据时可能有中断的情况。[解决办法]說一下數據結構和間隔情況

如何查询一段时间内按一定间隔出现的数据
采集数据时可能有中断的情况。

[解决办法]
說一下數據結構和間隔情況
[解决办法]
up
[解决办法]
数据结构呢
[解决办法]
楼主详细说明哇
[解决办法]
select * from tab where cjTime between <usertime1> and <usertime2>
或者
select * from tab where cjTime > = <usertime1> and cjTime <= <usertime2>
其中tab是表名, <usertime1> 和 <usertime2> 是时间开始和结束
[解决办法]
1.在数据库建存储过程
create procedure test(@interval int,@sdate datetime,@eDate Datetime)
as
declare @curdate datetime
begin
set @curdate=@sdate
create table #tmp() --临时表
while(@curdate <@edate)
begin
--插入临时表
set @curdate=dateadd(s,@interval,@curdate)
end
select * from #tmp

2.在客户端调用

热点排行