当我尝试在 DynamoDB 的 PartiQL 中运行查询时出现以下错误:
An error occurred during the execution of the command.
ValidationException: Overlapping conditions with range keys are not supported in where clause
查询如下所示:
SELECT * FROM "tableName"
WHERE "columnName" IN (
'abc',
'def',
'def'
)