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

时间:2017-08-04 14:23:16

标签: amazon-web-services amazon-simpledb

我尝试从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.

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

1 个答案:

答案 0 :(得分:5)

我找到了解决方案 - 事实证明我需要使用单引号查询表名称周围的特殊字符:

  

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