2

我得到了表 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)

并将它们放入此插件中。

例如时间戳为 1333435804 的值 1 将是

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

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

4

2 回答 2

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
于 2012-04-26T13:32:10.237 回答
0

我猜下面的查询会计算插入子句所需的所有数据:

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);
于 2012-04-26T13:44:44.950 回答