我目前有一个工业气体发生器,它的数据记录到一个Postgres服务器。发电机中的一个容器的额定压力循环可达10000次。
是否有一个SQL示例或方法来显示压力容器(每秒记录一次数据)在10巴到100巴之间循环的次数?
根据以下注释进行编辑:
表格结构:

CREATE TABLE log_934 (datetime timestamp primary key, pt001 real, pt002 real ...);

数据每秒通过外部程序插入表格,其中“pt”值为压力。等效的插入命令是:
INSERT INTO log_934 (datetime, pt001, pt002 ... ) VALUES ('2015-05-10 10:00:00', 50.65, 75.54 ...);
INSERT INTO log_934 (datetime, pt001, pt002 ...) VALUES ('2015-05-10 10:00:01, 50.69, 75.49 ...);
...

预期结果将是:
|pt001 cycled between 10 and 100|
---------------------------------
|50                             |

最佳答案

我的第一个方法:

select count(*) from (
    select distinct max(lmin.datetime) as inflexion
    from log_934 lmax
    inner join log_934 lmin on lmax.datetime > lmin.datetim and
                               lmin.pt001 <= 10
    where lmax.pt001 >= 100
    group by lmax.datetime

    union all

    select distinct max(lmax.datetime) as inflexion
    from log_934 lmin
    inner join log_934 lmax on lmin.datetime > lmax.datetim and
                               lmax.pt001 >= 100
    where lmin.pt001 <= 10
    group by lmin.datetime
) T

第一个子查询每读取一个大于100的datetime,就得到ded3js中可以看到:

07-26 09:34
查看更多