我到处搜索,似乎找不到任何关于如何处理我的查询的信息。如果我问的是一个愚蠢的问题,我提前道歉,但我真的需要一些帮助。
我有一系列以不同时间间隔记录的值。数据如下所示:
timeStamp | RPM
2012-05-01 01:02:56 | 802
2012-05-01 01:03:45 | 845
2012-05-01 01:04:50 | 825
2012-05-01 01:05:55 | 810
2012-05-01 01:07:00 | 1000
2012-05-01 01:08:03 | 1005
2012-05-01 01:09:05 | 1145
2012-05-01 01:10:15 | 1110
2012-05-01 01:11:20 | 800
2012-05-01 01:12:22 | 812
2012-05-01 01:13:20 | 820
2012-05-01 01:14:20 | 820
2012-05-01 01:15:20 | 1200
示例中的 RPM 是发动机 RPM。
当 RPM 在 800-900 范围内时,我需要开始和结束时间戳,因为这被视为引擎空转。我还希望能够返回每个非空闲时间段的开始和结束时间。
我想要得到的结果是这样的:
Period | startTime | endTime | duration
Idle1 | 2012-05-01 01:02:56 | 2012-05-01 01:05:55 | 179 seconds
nonIdle1 | 2012-05-01 01:07:00 | 2012-05-01 01:10:15 | 195 seconds
idle2 | 2012-05-01 01:11:20 | 2012-05-01 01:14:20 | 180 seconds
在此先感谢您的帮助。
谢谢
最佳答案
试试这个:http://www.sqlfiddle.com/#!2/e9372/1
在数据库端这样做的好处是您不仅可以在 PHP 上使用查询,还可以在 Java、C#、Python 等上使用它。而且在数据库端这样做速度很快
select
if(idle_state = 1,
concat('Idle ', idle_count),
concat('NonIdle ', non_idle_count) ) as Period,
startTime, endTime, duration
from
(
select
@idle_count := @idle_count + if(idle_state = 1,1,0) as idle_count,
@non_idle_count := @non_idle_count +if(idle_state = 0,1,0) as non_idle_count,
state_group, idle_state,
min(timeStamp) as startTime, max(timeStamp) as endTime,
timestampdiff(second, min(timeStamp), max(timeStamp)) as duration
from
(
select *,
@idle_state := if(rpm between 800 and 900, 1, 0) as idle_state,
@state_group := @state_group +
if(@idle_state = @prev_state,0,1) as state_group,
@prev_state := @idle_state
from (tbl, (select @state_group := 0 as y) as vars)
order by tbl.timeStamp
) as x
,(select @idle_count := 0 as y, @non_idle_count := 0 as z) as vars
group by state_group, idle_state
) as summary
输出:
| PERIOD | STARTTIME | ENDTIME | DURATION |
|-----------|----------------------------|----------------------------|----------|
| Idle 1 | May, 01 2012 01:02:56-0700 | May, 01 2012 01:05:55-0700 | 179 |
| NonIdle 1 | May, 01 2012 01:07:00-0700 | May, 01 2012 01:10:15-0700 | 195 |
| Idle 2 | May, 01 2012 01:11:20-0700 | May, 01 2012 01:14:20-0700 | 180 |
| NonIdle 2 | May, 01 2012 01:15:20-0700 | May, 01 2012 01:15:20-0700 | 0 |
在此处查看查询进度:http://www.sqlfiddle.com/#!2/e9372/1
五个步骤。
首先,将空闲与非空闲分开:
select *,
@idle_state := if(rpm between 800 and 900, 1, 0) as idle_state
from (tbl, (select @state_group := 0 as y) as vars)
order by tbl.timeStamp;
输出:
| TIMESTAMP | RPM | Y | IDLE_STATE |
|----------------------------|------|---|------------|
| May, 01 2012 01:02:56-0700 | 802 | 0 | 1 |
| May, 01 2012 01:03:45-0700 | 845 | 0 | 1 |
| May, 01 2012 01:04:50-0700 | 825 | 0 | 1 |
| May, 01 2012 01:05:55-0700 | 810 | 0 | 1 |
| May, 01 2012 01:07:00-0700 | 1000 | 0 | 0 |
| May, 01 2012 01:08:03-0700 | 1005 | 0 | 0 |
| May, 01 2012 01:09:05-0700 | 1145 | 0 | 0 |
| May, 01 2012 01:10:15-0700 | 1110 | 0 | 0 |
| May, 01 2012 01:11:20-0700 | 800 | 0 | 1 |
| May, 01 2012 01:12:22-0700 | 812 | 0 | 1 |
| May, 01 2012 01:13:20-0700 | 820 | 0 | 1 |
| May, 01 2012 01:14:20-0700 | 820 | 0 | 1 |
| May, 01 2012 01:15:20-0700 | 1200 | 0 | 0 |
其次,将更改分成几组:
select *,
@idle_state := if(rpm between 800 and 900, 1, 0) as idle_state,
@state_group := @state_group +
if(@idle_state = @prev_state,0,1) as state_group,
@prev_state := @idle_state
from (tbl, (select @state_group := 0 as y) as vars)
order by tbl.timeStamp;
输出:
| TIMESTAMP | RPM | Y | IDLE_STATE | STATE_GROUP | @PREV_STATE := @IDLE_STATE |
|----------------------------|------|---|------------|-------------|----------------------------|
| May, 01 2012 01:02:56-0700 | 802 | 0 | 1 | 1 | 1 |
| May, 01 2012 01:03:45-0700 | 845 | 0 | 1 | 1 | 1 |
| May, 01 2012 01:04:50-0700 | 825 | 0 | 1 | 1 | 1 |
| May, 01 2012 01:05:55-0700 | 810 | 0 | 1 | 1 | 1 |
| May, 01 2012 01:07:00-0700 | 1000 | 0 | 0 | 2 | 0 |
| May, 01 2012 01:08:03-0700 | 1005 | 0 | 0 | 2 | 0 |
| May, 01 2012 01:09:05-0700 | 1145 | 0 | 0 | 2 | 0 |
| May, 01 2012 01:10:15-0700 | 1110 | 0 | 0 | 2 | 0 |
| May, 01 2012 01:11:20-0700 | 800 | 0 | 1 | 3 | 1 |
| May, 01 2012 01:12:22-0700 | 812 | 0 | 1 | 3 | 1 |
| May, 01 2012 01:13:20-0700 | 820 | 0 | 1 | 3 | 1 |
| May, 01 2012 01:14:20-0700 | 820 | 0 | 1 | 3 | 1 |
| May, 01 2012 01:15:20-0700 | 1200 | 0 | 0 | 4 | 0 |
第三,将它们分组,并计算持续时间:
select
state_group, idle_state,
min(timeStamp) as startTime, max(timeStamp) as endTime,
timestampdiff(second, min(timeStamp), max(timeStamp)) as duration
from
(
select *,
@idle_state := if(rpm between 800 and 900, 1, 0) as idle_state,
@state_group := @state_group +
if(@idle_state = @prev_state,0,1) as state_group,
@prev_state := @idle_state
from (tbl, (select @state_group := 0 as y) as vars)
order by tbl.timeStamp
) as x
group by state_group, idle_state;
输出:
| STATE_GROUP | IDLE_STATE | STARTTIME | ENDTIME | DURATION |
|-------------|------------|----------------------------|----------------------------|----------|
| 1 | 1 | May, 01 2012 01:02:56-0700 | May, 01 2012 01:05:55-0700 | 179 |
| 2 | 0 | May, 01 2012 01:07:00-0700 | May, 01 2012 01:10:15-0700 | 195 |
| 3 | 1 | May, 01 2012 01:11:20-0700 | May, 01 2012 01:14:20-0700 | 180 |
| 4 | 0 | May, 01 2012 01:15:20-0700 | May, 01 2012 01:15:20-0700 | 0 |
第四,获取空闲和非空闲计数:
select
@idle_count := @idle_count + if(idle_state = 1,1,0) as idle_count,
@non_idle_count := @non_idle_count + if(idle_state = 0,1,0) as non_idle_count,
state_group, idle_state,
min(timeStamp) as startTime, max(timeStamp) as endTime,
timestampdiff(second, min(timeStamp), max(timeStamp)) as duration
from
(
select *,
@idle_state := if(rpm between 800 and 900, 1, 0) as idle_state,
@state_group := @state_group +
if(@idle_state = @prev_state,0,1) as state_group,
@prev_state := @idle_state
from (tbl, (select @state_group := 0 as y) as vars)
order by tbl.timeStamp
) as x
,(select @idle_count := 0 as y, @non_idle_count := 0 as z) as vars
group by state_group, idle_state;
输出:
| IDLE_COUNT | NON_IDLE_COUNT | STATE_GROUP | IDLE_STATE | STARTTIME | ENDTIME | DURATION |
|------------|----------------|-------------|------------|----------------------------|----------------------------|----------|
| 1 | 0 | 1 | 1 | May, 01 2012 01:02:56-0700 | May, 01 2012 01:05:55-0700 | 179 |
| 1 | 1 | 2 | 0 | May, 01 2012 01:07:00-0700 | May, 01 2012 01:10:15-0700 | 195 |
| 2 | 1 | 3 | 1 | May, 01 2012 01:11:20-0700 | May, 01 2012 01:14:20-0700 | 180 |
| 2 | 2 | 4 | 0 | May, 01 2012 01:15:20-0700 | May, 01 2012 01:15:20-0700 | 0 |
最后,删除暂存变量:
select
if(idle_state = 1,
concat('Idle ', idle_count),
concat('NonIdle ', non_idle_count) ) as Period,
startTime, endTime, duration
from
(
select
@idle_count := @idle_count + if(idle_state = 1,1,0) as idle_count,
@non_idle_count := @non_idle_count +if(idle_state = 0,1,0) as non_idle_count,
state_group, idle_state,
min(timeStamp) as startTime, max(timeStamp) as endTime,
timestampdiff(second, min(timeStamp), max(timeStamp)) as duration
from
(
select *,
@idle_state := if(rpm between 800 and 900, 1, 0) as idle_state,
@state_group := @state_group +
if(@idle_state = @prev_state,0,1) as state_group,
@prev_state := @idle_state
from (tbl, (select @state_group := 0 as y) as vars)
order by tbl.timeStamp
) as x
,(select @idle_count := 0 as y, @non_idle_count := 0 as z) as vars
group by state_group, idle_state
) as summary
输出:
| PERIOD | STARTTIME | ENDTIME | DURATION |
|-----------|----------------------------|----------------------------|----------|
| Idle 1 | May, 01 2012 01:02:56-0700 | May, 01 2012 01:05:55-0700 | 179 |
| NonIdle 1 | May, 01 2012 01:07:00-0700 | May, 01 2012 01:10:15-0700 | 195 |
| Idle 2 | May, 01 2012 01:11:20-0700 | May, 01 2012 01:14:20-0700 | 180 |
| NonIdle 2 | May, 01 2012 01:15:20-0700 | May, 01 2012 01:15:20-0700 | 0 |
在此处查看查询进度:http://www.sqlfiddle.com/#!2/e9372/1
更新
查询可以缩短http://www.sqlfiddle.com/#!2/418cb/1
如果您注意到,周期数只是串联(idle-nonIdle、idle-nonIdle 等等)。你可以这样做:
select
case when idle_state then
concat('Idle ', @rn := @rn + 1)
else
concat('Non-idle ', @rn )
end as Period,
min(timeStamp) as startTime, max(timeStamp) as endTime,
timestampdiff(second, min(timeStamp), max(timeStamp)) as duration
from
(
select *,
@idle_state := if(rpm between 800 and 900, 1, 0) as idle_state,
@state_group := @state_group + if(@idle_state = @prev_state,0,1) as state_group,
@prev_state := @idle_state
from (tbl, (select @state_group := 0 as y) as vars)
order by tbl.timeStamp
) as x,
(select @rn := 0) as rx
group by state_group, idle_state
输出:
| PERIOD | STARTTIME | ENDTIME | DURATION |
|------------|----------------------------|----------------------------|----------|
| Idle 1 | May, 01 2012 01:02:56-0700 | May, 01 2012 01:05:55-0700 | 179 |
| Non-idle 1 | May, 01 2012 01:07:00-0700 | May, 01 2012 01:10:15-0700 | 195 |
| Idle 2 | May, 01 2012 01:11:20-0700 | May, 01 2012 01:14:20-0700 | 180 |
| Non-idle 2 | May, 01 2012 01:15:20-0700 | May, 01 2012 01:15:20-0700 | 0 |
关于值在范围内时的mysql分组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10842885/
在控制台中反复尝试之后,我想到了这种方法,可以按发生日期对类似activerecord的(Mongoid)对象进行分组。我不确定这是完成此任务的最佳方法,但它确实有效。有没有人有更好的建议,或者这是一个很好的方法?#eventsisanarrayofactiverecord-likeobjectsthatincludeatimeattributeevents.map{|event|#converteventsarrayintoanarrayofhasheswiththedayofthemonthandtheevent{:number=>event.time.day,:event=>ev
请帮助我理解范围运算符...和..之间的区别,作为Ruby中使用的“触发器”。这是PragmaticProgrammersguidetoRuby中的一个示例:a=(11..20).collect{|i|(i%4==0)..(i%3==0)?i:nil}返回:[nil,12,nil,nil,nil,16,17,18,nil,20]还有:a=(11..20).collect{|i|(i%4==0)...(i%3==0)?i:nil}返回:[nil,12,13,14,15,16,17,18,nil,20] 最佳答案 触发器(又名f/f)是
我有一个这样的哈希数组:[{:foo=>2,:date=>Sat,01Sep2014},{:foo2=>2,:date=>Sat,02Sep2014},{:foo3=>3,:date=>Sat,01Sep2014},{:foo4=>4,:date=>Sat,03Sep2014},{:foo5=>5,:date=>Sat,02Sep2014}]如果:date相同,我想合并哈希值。我对上面数组的期望是:[{:foo=>2,:foo3=>3,:date=>Sat,01Sep2014},{:foo2=>2,:foo5=>5:date=>Sat,02Sep2014},{:foo4=>4,:dat
我正在尝试从Postgresql表(table1)中获取数据,该表由另一个相关表(property)的字段(table2)过滤。在纯SQL中,我会这样编写查询:SELECT*FROMtable1JOINtable2USING(table2_id)WHEREtable2.propertyLIKE'query%'这工作正常:scope:my_scope,->(query){includes(:table2).where("table2.property":query)}但我真正需要的是使用LIKE运算符进行过滤,而不是严格相等。然而,这是行不通的:scope:my_scope,->(que
我刚刚被困在这个问题上一段时间了。以这个基地为例:moduleTopclassTestendmoduleFooendend稍后,我可以通过这样做在Foo中定义扩展Test的类:moduleTopmoduleFooclassSomeTest但是,如果我尝试通过使用::指定模块来最小化缩进:moduleTop::FooclassFailure这失败了:NameError:uninitializedconstantTop::Foo::Test这是一个错误,还是仅仅是Ruby解析变量名的方式的逻辑结果? 最佳答案 Isthisabug,or
假设我有这个范围:("aaaaa".."zzzzz")如何在不事先/每次生成整个项目的情况下从范围中获取第N个项目? 最佳答案 一种快速简便的方法:("aaaaa".."zzzzz").first(42).last#==>"aaabp"如果出于某种原因你不得不一遍又一遍地这样做,或者如果你需要避免为前N个元素构建中间数组,你可以这样写:moduleEnumerabledefskip(n)returnto_enum:skip,nunlessblock_given?each_with_indexdo|item,index|yieldit
文章目录一、概述简介原理模块二、配置Mysql使用版本环境要求1.操作系统2.mysql要求三、配置canal-server离线下载在线下载上传解压修改配置单机配置集群配置分库分表配置1.修改全局配置2.实例配置垂直分库水平分库3.修改group-instance.xml4.启动监听四、配置canal-adapter1修改启动配置2配置映射文件3启动ES数据同步查询所有订阅同步数据同步开关启动4.验证五、配置canal-admin一、概述简介canal是Alibaba旗下的一款开源项目,Java开发。基于数据库增量日志解析,提供增量数据订阅&消费。Git地址:https://github.co
假设我有一个在Ruby中看起来像这样的哈希:{:ie0=>"Hi",:ex0=>"Hey",:eg0=>"Howdy",:ie1=>"Hello",:ex1=>"Greetings",:eg1=>"Goodday"}有什么好的方法可以将它变成如下内容:{"0"=>{"ie"=>"Hi","ex"=>"Hey","eg"=>"Howdy"},"1"=>{"ie"=>"Hello","ex"=>"Greetings","eg"=>"Goodday"}} 最佳答案 您要求一个好的方法来做到这一点,所以答案是:一种您或同事可以在六个月后理解
我正在尝试查询我的Rails数据库(Postgres)中的购买表,我想查询时间范围。例如,我想知道在所有日期的下午2点到3点之间进行了多少次购买。此表中有一个created_at列,但我不知道如何在不搜索特定日期的情况下完成此操作。我试过:Purchases.where("created_atBETWEEN?and?",Time.now-1.hour,Time.now)但这最终只会搜索今天与那些时间的日期。 最佳答案 您需要使用PostgreSQL'sdate_part/extractfunction从created_at中提取小时
已经有一个问题回答了如何将“America/Los_Angeles”转换为“PacificTime(US&Canada)”。但是我想将“美国/太平洋”和其他过时的时区转换为RailsTimeZone。我无法在图书馆中找到任何可以帮助我完成此任务的东西。 最佳答案 来自RailsActiveSupport::TimeZonedocs:TheversionofTZInfobundledwithActiveSupportonlyincludesthedefinitionsnecessarytosupportthezonesdefinedb