3

我计划实现一个使用 ltree 作为多级分类的数据库。但是,当我尝试使用路径 x 或 y 获取条目时遇到了麻烦。

         new_table
+-------+--------+---------+
|  id   |  name  |   path  |
----------------------------
|   1   |    a   |   001   |
|   2   |    b   |   002   |
|   3   |    c   | 001.001 |
|   4   |    d   | 002.001 |
|   5   |    e   |   003   |
----------------------------

使用下表,我想获得一个以 001 或 002 开头的 id。但是我似乎无法获得正确的查询。

预期结果:1,2,3,4
这有效:select id from new_table where path <@ '001' or path <@ '002'
这无效(导致语法错误):select id from ingredient where ingredient_path <@ '001|002'

这让我感到困惑,因为文档指出使用 | (或)符号是可以接受的。

我对 ltree 很陌生,希望我能得到一个很容易理解的答案。

4

2 回答 2

2

符号 | (or) 是可以接受的,ltxtquery所以使用ltree @ ltxtquery运算符:

select id from new_table where path @ '001|002'; -- find labels 001 or 002
-- or
select id from new_table where path @ '001*|002*'; -- find labels starting with 001 or 002
于 2017-06-19T09:57:28.107 回答
1

尝试:

select id from new_table where path ~ '001|002.*'

<@根据文档,我认为OR 不适用于操作员,

ltree <@ ltree

并且|可以lquery代替使用

于 2017-06-19T09:57:44.757 回答