gpt4 book ai didi

sql - 尝试使用 SQL 中的 any 从其他表中获取值

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

我的查询是:

SELECT * 
FROM table1
RIGHT JOIN table2 on table1.ID = any(table2.parents)
WHERE table1.ID = 1

我的第一个表是:

ID   | desc         
123 | Data123
231 | Data231

我的第二张 table 是:

ID   | parents
1 | {123,231}
2 | {123}

但是这个查询不起作用。我正在尝试从 123 和 231 获取数据,我该如何解决这个问题?

最佳答案

any(table1.parents)

parents 不存在于表 1 中。

尝试换个地方

SELECT * 
FROM table1
RIGHT JOIN table2 on table1.ID = any(table2.parents)
WHERE table2.ID = 1

关于sql - 尝试使用 SQL 中的 any 从其他表中获取值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39877177/

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