gpt4 book ai didi

sql - Postgres WHERE 两个数组有一个非空的交集

转载 作者:行者123 更新时间:2023-12-04 11:27:02 25 4
gpt4 key购买 nike

我有一个带列的表 tags类型 varchar [] .

我想选择标签至少包含一组值中的一个的所有行。

像这样的东西:

-- Not real code
SELECT *
FROM foo
WHERE non_empty(set_intersection(tags, '{ "apples", "bananas", "cherries" }'))

这是什么语法?

我知道我可以做一系列 OR s 但这似乎不太优雅。

最佳答案

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

select *
from foo
where tags && ARRAY['apples', 'bananas', 'cherries']

来自 the documentation :

&&: overlap (have elements in common)

关于sql - Postgres WHERE 两个数组有一个非空的交集,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60615226/

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