gpt4 book ai didi

join - 通过加入 BigQuery 进行更新

转载 作者:行者123 更新时间:2023-12-04 13:30:47 25 4
gpt4 key购买 nike

是否可以基于与 BigQuery 中现有表的 JOIN 对表进行更新?

当我在以下数据库( https://bigquery.cloud.google.com/dataset/pfamdb:pfam31 )上尝试此语句时,

  UPDATE pfam31.uniprot
SET uniprot.auto_architecture = uniprot_architecture.auto_architecture
INNER JOIN
pfam31.uniprot_architecture using(uniprot_acc)

我收到与 INNER JOIN 相关的错误, 与 WHERE而是被期待。我应该怎么做(如果可能的话)?

最佳答案

UPDATE `pfam31.uniprot` a
SET a.auto_architecture = b.auto_architecture
FROM `pfam31.uniprot_architecture` b
WHERE a.uniprot_acc = b.uniprot_acc

关于join - 通过加入 BigQuery 进行更新,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47373774/

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