gpt4 book ai didi

sql - 选择数组包含 Postgres 中给定列表中的值的所有行

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

我有一个包含整数数组列的表。我想从给定列表中选择至少包含一个 int 值的所有行。

例如

SELECT * FROM table where (111) = ANY (columarray)

返回 columnarray 包含 111 的所有行。

现在我想选择 columnarray 包含 111 或/和 222 的所有行。类似

SELECT * FROM table where (111,222) = ANY (columnarray)

那是行不通的。它返回一个错误

Error: ERROR: operator does not exist: record = integer Hint: No operator matches the given name and argument type(s). You might need to add explicit type casts. Position: 45 SQLState: 42883 ErrorCode: 0

最佳答案

您可以使用数组重叠运算符:

SELECT *
FROM table
WHERE ARRAY[111, 222] && columnarray;

关于sql - 选择数组包含 Postgres 中给定列表中的值的所有行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48499706/

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