gpt4 book ai didi

mysql - 将值添加到下一个序列值

转载 作者:行者123 更新时间:2023-11-29 04:34:25 25 4
gpt4 key购买 nike

谁能帮帮我?

我想将值 10 (ID-1, Column_2) 添加到 150 (ID-2, column_1):比如我们:10 +150 = 160

该过程应该对下一行重复。

所以下一个将是 5+ 130 = 135。

使用 SQL Select 语句,有人可以帮我写那个代码吗?

谢谢。

enter image description here

最佳答案

在 SQL Server 中,您将使用 lag():

select col1 + lag(col2, 1, 0) over (order by id) as col1, col2
from t;

假设您不想更改第一个值。

关于mysql - 将值添加到下一个序列值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47518979/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com