0

下面是我使用扫描表时 DynamoDb 中的表结构

aws dynamodb scan --table-name "hotel" --endpoint-url  http://localhost:8088

{
    "Count": 2,
    "Items": [
        {
            "dc": {
                "N": "0"
            },
            "sw": {
                "L": [
                    {
                        "N": "1"
                    }
                ]
            }
        },
        {
            "dc": {
                "N": "0"
            },
            "sw": {
                "L":[]
            },
        }
    ],
    "ScannedCount": 2,
    "ConsumedCapacity": null
}

现在我想查询表 where sw: []。我正在使用以下查询来检索结果。

aws dynamodb query --table-name "hotel" --key-conditions  file:////tables/key1.json --endpoint-url http://localhost:8088 where 

key1.json

{
  "sw":{
    "ComparisonOperator":"EQ",
    "AttributeValueList": [ {"L":[]} ]
  }
}

但我收到以下错误

An error occurred (ValidationException) when calling the Query operation: Query condition missed key schema element

请建议我如何查询表以检索结果。

4

1 回答 1

0

您构建表格的方式很难通过其字段查询数组。尝试将每个项目保存为一行。

于 2019-12-04T14:33:16.580 回答