gpt4 book ai didi

mysql - 将 row2 值设置为与 row1 值相同,且列相同

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

我有一张如下图所示的表格:

enter image description here

这里我标记了两行。有两个不同的元键,一个是 _regular_price,另一个是 _price

现在我想更新 _price meta_key 的 meta_value 并将价格设置为 _regular_price

那么我应该写什么查询?

最佳答案

您可以使用自加入:

update yourtable t1
join yourtable t2
on t1.post_id = t2.post_id and t2.meta_key = '_regular_price'
set t1.meta_value = t2.meta_value
where t1.meta_key = '_price'

关于mysql - 将 row2 值设置为与 row1 值相同,且列相同,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38653523/

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