如何根据 MySQL 中的当前值更新字段?

发布于 2024-11-01 14:45:03 字数 178 浏览 0 评论 0原文

是否可以获取字段的当前值,将其用作计算中的变量,然后根据结果更新字段?

例如table1中ID为“1”的记录的值为“2”

SELECT table1
WHERE ID = "1"
SET RESULT to CurrentID
RESULT = CurrentID + 1;

Is it possible to get the current value of a field, use it as a variable in a calculation, then update the field based on the result?

For example the record with the ID "1" in table1 has a value of "2"

SELECT table1
WHERE ID = "1"
SET RESULT to CurrentID
RESULT = CurrentID + 1;

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

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

发布评论

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

评论(2

深居我梦 2024-11-08 14:45:05

对于任何具有 ID 的行,这会将 result 列设置为同一行的 CurrentID 列的值(加 1)等于“1”的列:

UPDATE table1
SET result = CurrentID + 1
WHERE ID = "1"

This will set the result column to the value of the CurrentID column (plus 1) of the same row, for any row that has an ID column that equals "1":

UPDATE table1
SET result = CurrentID + 1
WHERE ID = "1"
紫轩蝶泪 2024-11-08 14:45:05

你可以尝试

Update table1 set ID = ID+1 where ID = 1

You might try

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