gpt4 book ai didi

postgresql - Postgres ltree 多路径

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

好的,所以我有一个表,其中 ltree 列在名为 path 的列上。我想选择多个路径,但我不想有大量的 OR 语句。这可能吗?或者这是最好的方法吗?

路径:

  • 'schools.myschool.*'
  • '公司.about.*'
  • '测试.information.content.*'

查询:

SELECT content, path FROM threads WHERE path ~ 'schools.myschool.*' OR path ~ 'companies.about.*' OR path ~ 'testing.information.content.*

最佳答案

select 'schools.myschool.*' ~ any(array[
'schools.myschool.*', 'companies.about.*', 'testing.information.content.*'
]);
?column?
----------
t

关于postgresql - Postgres ltree 多路径,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22315962/

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