AWS SimpleDB CLI:如何使用 'select' 命令?

AWS SimpleDB CLI: How to use the 'select' command?

我正在尝试从 AWS CLI 使用 AWS SimpleDB 的 select 命令。

所需调用如下: select --select-expression <value>

其中select-expression描述如下:--select-expression (string) The expression used to query the domain.

The select is supposed to be similar to the SQL select statement,但是我不断收到有关语法的错误,例如:

aws sdb select --select-expression "select * from my-domain"

An error occurred (InvalidQueryExpression) when calling the Select operation: The specified query expression syntax is not valid.

我也找不到任何关于正确使用语法的文档或示例。

我找到了解决方案 - 结果我需要在 table 名称周围使用单引号和特殊字符:

aws sdb select --select-expression 'select * from `my-domain`'