gql_query.query_string = "SELECT * FROM <entity> where `timestamp` <= datetime('2014-06-05 00:00:00')"
gql_query.allow_literal = True
resp = datastore.run_query(req)
results = [entity_result.entity
for entity_result in resp.batch.entity_result]
当我在上面运行查询时,会产生如下错误:
ERROR:root:Error while doing datastore operation
ERROR:root:RPCError: runQuery Invalid datetime text (does not match pattern): "2014-06-05 00:00:00"
ERROR:root:HTTPError: 400 Bad Request
答案 0 :(得分:8)
Cloud Datastore GQL使用RFC 3339 section 5.6来表示日期时间字符串。在这种情况下,您需要在日期和时间之间使用“T”而不是空格,并在字符串的末尾添加“Z”:
SELECT * FROM <entity> WHERE `timestamp` <= datetime('2014-06-05T00:00:00Z')
可以找到有关合成文字的完整文档,包括有关日期时间文字的更多详细信息,here。