如何根据同一个表中的另一行进行更新?

发布于 2024-12-08 03:31:35 字数 212 浏览 0 评论 0原文

我想创建一个查询,根据 id 大 1 的行的 int 来更新 int。

我已经尝试过这个查询,但它说我无法在更新语句中标记该表。但是我如何在子查询中引用它?

update t1 a set `int1` = (select `int1` from t1 b where b.id=a.id+1);

如何克服无法使用别名的问题?

I want to create a query that updates an int based on the int of the row with an id that is 1 higher.

I have tried this query, but it says that i can't label the table in an update statement. But how do i reference it in my subquery?

update t1 a set `int1` = (select `int1` from t1 b where b.id=a.id+1);

How can I overcome that I can't use an alias?

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

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

发布评论

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

评论(1

|煩躁 2024-12-15 03:31:35

试试这个 -

UPDATE
  t1 a
  JOIN t1 b
    ON b.id = a.id + 1
SET
  a.int1 = b.int1;

如果 id 值中有漏洞,查询可能会更改。

Try this one -

UPDATE
  t1 a
  JOIN t1 b
    ON b.id = a.id + 1
SET
  a.int1 = b.int1;

If there are holes in id values, the query may be changed.

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