gpt4 book ai didi

postgresql - 我可以索引一个(unnest)数组吗?

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

我想写这样的东西

create index on thread(unnest(tags));

但是我得到了错误

ERROR: index expression cannot return a set

基本上,我想找到所有标签标识为 2 的文档 ( see my other question for details ),我假设下面的内容就像一个 blob(我找不到 [1,2],因为 1 不是在我的查询中)

create index on thread(tags);

最佳答案

使用 GIN index type :

CREATE INDEX ON thread USING gin (tags);

... 然后用 @> operator 查询表:

SELECT * FROM thread WHERE tags @> ARRAY[2];

关于postgresql - 我可以索引一个(unnest)数组吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43223766/

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