gpt4 book ai didi

group-by - 在 AWS QLDB/Partiql 中使用 GROUP BY

转载 作者:行者123 更新时间:2023-12-04 10:19:48 24 4
gpt4 key购买 nike

我的 AWS QLDB 表中有下表:

INSERT INTO Testing << {
'MyId': 1,
'MyList': [ 'Item1', 'Item2', 'Item3']
},
{
'MyId': 2,
'MyList': [ 'Item2', 'Item3', 'Item4']
},
{
'MyId': 3,
'MyList': [ 'Item4', 'Item5', 'Item6']
}
>>

我需要能够获取包含项目列表(不是来自另一个表)的所有文档,我正在使用以下查询:
SELECT *
FROM Testing AS t,
t.MyList AS l
WHERE l IN ('Item1', 'Item2', 'Item4')

但是,这给出了以下输出
+------+---------------------------+---------+
| MyId | MyList | _3 |
+------+---------------------------+---------+
| 3 | ["Item4","Item5","Item6"] | "Item4" |
+------+---------------------------+---------+
| 1 | ["Item1","Item2","Item3"] | "Item1" |
+------+---------------------------+---------+
| 1 | ["Item1","Item2","Item3"] | "Item2" |
+------+---------------------------+---------+
| 2 | ["Item2","Item3","Item4"] | "Item2" |
+------+---------------------------+---------+
| 2 | ["Item2","Item3","Item4"] | "Item4" |
+------+---------------------------+---------+

我希望能够获得三个不同的行。它会根据我在尝试使用 DISTINCT 时遇到的错误而出现QLDB 不支持它,但我也更喜欢使用 *在我的 SELECT , 所以我想用 GROUP BY
SELECT *
FROM Testing AS t,
t.MyList AS l
WHERE l IN ('Item1', 'Item2', 'Item4')
GROUP BY t.MyId

但这会产生以下错误:

Start query error
Semantic Error: at line , column : No such variable named '$__partiql__group_by_1_item_0'; No such variable named '$__partiql__group_by_1_item_0' (Service: AmazonQLDBSession; Status Code: 400; Error Code: BadRequestException; Request ID: 65vrQHytqHdEL3o9Ym9Xn4)

最佳答案

都没有 DISTINCT也不是 GROUP BY QLDB 当前不支持,如 the SELECT reference. 中的遗漏所示不幸的是,在这种情况下,错误消息具有误导性。

假设您的 MyId列本身是独一无二的,您可以通过检查列表中是否包含每个项目来过滤列表来表达您想要的内容,例如:

SELECT *
FROM Testing AS t
WHERE 'Item1' IN t.MyList OR 'Item2' IN t.MyList OR 'Item3' IN t.MyList

如果你想进一步过滤生成的列表,你可以添加一个嵌套的 SELECT使用原装过滤器 as described here :

SELECT t.MyId, (SELECT VALUE l FROM t.MyList WHERE l IN ('Item1', 'Item2', 'Item3'))
FROM Testing AS t
WHERE 'Item1' IN t.MyList OR 'Item2' IN t.MyList OR 'Item3' IN t.MyList

虽然这有点尴尬,但您可能不想做 GROUP BY无论如何,因为这将跨整个数据集分组(需要完整的聚合),当 items每个 t包含在其中。

关于group-by - 在 AWS QLDB/Partiql 中使用 GROUP BY,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60910236/

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