gpt4 book ai didi

vertica - 如何在与其他表连接时使用固定值更新 vertica 中的表?

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

我在 Mysql 中有这个查询:

UPDATE table1 AS a
JOIN table2 AS b ON a.code=b.code
AND b.rating < 3
SET a.Status = 'Delisted';

在 Vertica 中使用它时出现错误:““JOIN”处或附近的语法错误”有人可以帮忙吗?提前致谢

最佳答案

试试这个(没有 JOIN,Vertica 足够聪明):

update table1 as a set status = 'delisted'
from table2 as b
where a.code = b.code and b.rating < 3;

有关更多信息,请阅读 here

关于vertica - 如何在与其他表连接时使用固定值更新 vertica 中的表?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28319314/

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