gpt4 book ai didi

mysql - 如何在mysql中的where条件下使用动态数据更新表

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

我正在尝试使用此查询更新 View :

  UPDATE tableview SET status = 1 where event_id in (SELECT eventsId
FROM tableview2 where status <>1)

使用此查询我得到 1,2,3,4

 SELECT eventsId
FROM tableview2 where status <>1

但是当我尝试更新它时,它显示多个列操作数,请建议我如何更新它

最佳答案

这对你有用

  UPDATE tableview v1
inner join tableview2 v2 on v1.event_id =v2.event_id
SET status = 1
where v2.status<>1

关于mysql - 如何在mysql中的where条件下使用动态数据更新表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40841958/

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