MySQL聚合函数对行与行之间的差异进行求和

发布于 2024-12-09 00:46:07 字数 251 浏览 0 评论 0原文

我有这个lil'mysql表:

+----+-------+
| id | value |
+----+-------+
|  1 |  1240 |
|  2 |  1022 |
|  3 |   802 |
| .. |    .. |
+------+-----+

我正在搜索一个sql查询,总结行之间的差异:

第1行和第2行的差异+第2行和第3行的差异+...

这可以用sql吗?

i've got this lil' mysql table:

+----+-------+
| id | value |
+----+-------+
|  1 |  1240 |
|  2 |  1022 |
|  3 |   802 |
| .. |    .. |
+------+-----+

i'm searching for a sql-query summing up the difference between the rows:

difference of row 1 and 2 + difference of row 2 and 3 + ...

is that possibile with sql?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

罪歌 2024-12-16 00:46:07

当然!您的查询将如下所示:

SELECT a.id, 
       b.VALUE - a.VALUE difference 
FROM   mytable a 
       JOIN mytable b 
         ON b.id = a.id + 1 

其想法是将表与其自身偏​​移一行连接起来 - 然后您可以使用最初位于相邻行的值进行数学运算。

Sure! Your query will look something like this:

SELECT a.id, 
       b.VALUE - a.VALUE difference 
FROM   mytable a 
       JOIN mytable b 
         ON b.id = a.id + 1 

The idea is to join the table with itself offset by one row -- then you can do math with values that were originally on adjacent rows.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文