mysql,如何进行“插入重复键更新”存储上一个。价值观?

发布于 2024-12-01 02:53:11 字数 483 浏览 3 评论 0原文

为什么这样的表:

create table tbl (
    id int not null auto_increment,
    key1 int not null,
    key2 int not null,
    value0 double,
    value1 double,
    key(id),
    unique(key1,key2)
);

以下查询不存储上一个。更新现有记录时将“value0”的值更改为“value1”?有可能吗?

insert into tbl (key1, key2, value0, value1) 
values (...), (...)
, ...
, (...) 
on duplicate key update value0=values(value0), value1=if(value0<>values(value0),value0, value1);

Why for table like this:

create table tbl (
    id int not null auto_increment,
    key1 int not null,
    key2 int not null,
    value0 double,
    value1 double,
    key(id),
    unique(key1,key2)
);

Following query is not storing prev. value of 'value0' to 'value1' when updating existing record? Is it possible at all?

insert into tbl (key1, key2, value0, value1) 
values (...), (...)
, ...
, (...) 
on duplicate key update value0=values(value0), value1=if(value0<>values(value0),value0, value1);

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

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

发布评论

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

评论(1

多情出卖 2024-12-08 02:53:11

UPDATE 按顺序更新值(在 UPDATE 和 DUPLICATE UPDATE 语句中)。
这意味着,如果您在更新语句中引用在同一语句中更新的值,您将获得更新后的值,而不是原始值。

因此,在语句中

on duplicate key update value0=values(value0), value1=if(value0<>values(value0),value0, value1);

value0 始终等于values(value0) - 它是在更新语句的前一部分中更新的。为了使其按照您的预期工作,您必须交换语句的位置:

on duplicate key update value1=if(value0<>values(value0),value0, value1), value0=values(value0);

UPDATE updates the values sequentially (both in UPDATE and in DUPLICATE UPDATE statement).
This means that if you refer a value in your update statement, that was updated in the same statement, you'll get the updated value, and not the original one.

Because of this in the statement

on duplicate key update value0=values(value0), value1=if(value0<>values(value0),value0, value1);

value0 always equeals to values(value0) - it was updates in the previous part of the update statement. To make it work as you expect you have to switch the positions of the statements:

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