使用SQL计算具有计数器值的行之间的差异

时间:2012-04-26 13:12:24

标签: sql sqlite

我得到了表T1,我更新了一些计数器值

id, unix_time_stamp, counter1, counter10
1 , 1333435800     , 55      , 80

然后我得到了表格T2,我复制了这些值

id, unix_time_stamp, counter1, counter10, value1, value10
1 , 1333435800     , 55      , 80       , 0     , 0
2 , 1333435801     , 60      , 87       , 5     , 7
3 , 1333435802     , 70      , 90       , 10    , 3
3 , 1333435804     , 80      , 100      , 5     , 5

这是通过一些触发功能

完成的
INSERT INTO T2 (unix_time_stamp, counter1, counter10) SELECT unix_time_stamp, counter1, counter10 FROM T1 WHERE id=1

我想要的是将value1,value10计算为

(current_counter1 - last_counter1)/(current_time - last_time)

并将它们放入此插页中。

例如值为1且时间戳为1333435804将为

value1=(80-70)/(1333435804-1333435802) = 5

换句话说

insert into t2
(unix_time_stamp, counter1, counter10, value1)
SELECT unix_time_stamp, counter1, counter10, 
(counter1 - (select counter1 from T1 order by unix_time_stamp DESC LIMIT 1)/
(unix_time_stamp - (select unix_time_stamp from T1 order by unix_time_stamp DESC LIMIT 1)
FROM T1 WHERE id=1

但我想要一个更短的版本,因为我有10个柜台:))

整个情况有点复杂,我有理由不在SQL之外做这个

我正在使用sqlite

这对我来说很复杂:) 请帮忙。

2 个答案:

答案 0 :(得分:1)

你的问题有点不清楚。这有什么关系吗?

DECLARE @Id int = 1

DECLARE @LastCounter1 int,
        @LastCounter10 int,
        @LastTime timestamp,

SELECT TOP 1    @LastCounter1 = counter1,
                @LastCounter10 = counter10,
                @LastTime = unix_time_stamp
FROM            T2
WHERE           id = @Id
ORDER BY        unix_time_stamp DESC

INSERT INTO T2 (id, unix_time_stamp, counter1, counter10, value1, value10)
SELECT      unix_time_stamp,
            counter1,
            counter10,
            ((counter1 - @LastCounter1) / (unix_time_stamp - @LastTime)),
            ((counter10 - @LastCounter10) / (unix_time_stamp - @LastTime))

更新回答:

INSERT INTO T2 (id, unix_time_stamp, counter1, counter10, value1, value10)
SELECT      T1.id,
            T1.unix_time_stamp,
            T1.counter1,
            T1.counter10,
            ((T1.counter1 - [Last].counter1) / (T1.unix_time_stamp - [Last].unix_time_stamp)), 
            ((T1.counter10 - [Last].counter10) / (T1.unix_time_stamp - [Last].unix_time_stamp))
FROM        T1
INNER JOIN  (
                SELECT TOP 1    id,
                                counter1,
                                counter10,
                                unix_time_stamp
                FROM            T2
                WHERE           id = 1
                ORDER BY        unix_time_stamp DESC
            ) [Last] ON T1.id = [Last].id
WHERE       T1.id = 1

答案 1 :(得分:0)

我想以下查询会计算insert子句所需的所有数据:

SELECT 1e0 * (cur.counter1 - prv.counter1)/(cur.unix_time_stamp - prv.unix_time_stamp)   AS [value1]
, 1e0 * (cur.counter10 - prv.counter10)/(cur.unix_time_stamp - prv.unix_time_stamp)      AS [value10]
, cur.counter1 AS [cur_counter1], cur.counter10 AS [cur_counter10], cur.unix_time_stamp AS [cur_time]
, prv.counter1 AS [prv_counter1], prv.counter10 AS [prv_counter10], prv.unix_time_stamp AS [prv_time]
FROM T1 cur, T1 prv
WHERE cur.counter1 = (SELECT MAX(aux_0.counter1) FROM T1 aux_0)
AND prv.counter1 = (SELECT MAX(aux_1.counter1) FROM T1 aux_1 WHERE aux_1.counter1 < cur.counter1);
相关问题