- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
原表:
+----+-------------+------------------+---------------------+
| id | playnum_sum | real_playnum_sum | create_time |
+----+-------------+------------------+---------------------+
| 1 | 100| 300| 2015-05-05 19:54:01 |
| 2 | 200| 400| 2015-05-06 19:54:01 |
| 3 | 300| 500| 2015-05-07 16:09:04 |
+----+-------------+------------------+---------------------+
我想让每两行相减,结果是这样的:
计算表:
+----+-------------+------------------+---------------------+
| id | playnum_sum | real_playnum_sum | create_time |
+----+-------------+------------------+---------------------+
| 1 | 100|100| 2015-05-06 19:54:01 (this is the second time in Origin table) |
| 2 | 100|100| 2015-05-07 16:09:04 (this is the third time in Origin table) |
+----+-------------+------------------+---------------------+
请注意创建时间。如何编写sql?
最佳答案
如果您的 ID 没有间隔,您可以通过自连接来实现:
select oprev.id, o.playnum_sum - oprev.playnum_sum,
o.real_playnum_sum - oprev.real_playnum_sum,
o.create_time
from original o join
original oprev
on o.id = oprev.id + 1;
关于mysql让两行相减,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33684927/
这个问题已经有答案了: Diff of two Dataframes (8 个回答) 已关闭 4 年前。 我有 2 个数据框(df_a 和 df_b),有 2 列:“动物”和“名称”。 在更大的数据框
如果我得到以下数字字符串,是否可以使用 LINQ 查询将这些数字一起加/减? string numbers = "1 + 1, 2 - 1, 3 + 3"; 所以我最终会得到这样的东西: 字符串数字
具有以下对象列表: public class Example { public string Local { get; set; } public string Type { get;
已关闭。此问题需要 debugging details 。目前不接受答案。 编辑问题以包含 desired behavior, a specific problem or error, and the
#include #include float sum (float *A, int len) // sum of table of floats { float ss = 0.0;
我正在阅读这篇博文:https://nee.lv/2021/02/28/How-I-cut-GTA-Online-loading-times-by-70/ 我很困惑: size_t len = end
我正在阅读这篇博文:https://nee.lv/2021/02/28/How-I-cut-GTA-Online-loading-times-by-70/ 我很困惑: size_t len = end
这个问题已经有答案了: Pointer Arithmetic In C (2 个回答) Pointer subtraction confusion (8 个回答) 已关闭 4 年前。 int vect
我知道这可能是个愚蠢的问题,但我遇到了一些麻烦,我很惭愧,但我真的不知道如何做到。我想加减两个以整数形式给出的“小时”。 #include #include #include using nam
大家好 StackOverflow.. 这个网站相当新,但我得到了很好的反馈!所以首先要感谢大家! 我想做的是类似于wonga的事情 https://www.wonga.com/ 但是随着值的协同工作
我是一名优秀的程序员,十分优秀!