GQL 查询帮助 - 如何在 GQL 中编写带有 where 子句的查询?我正在使用 google appengine 数据存储
我的表中有三条记录 示例:
*Usernames* *email* *city*
Nick [email protected] London
Vikky [email protected] Paris
Lisa [email protected] Sydney
现在我想获取特定的记录保存电子邮件 ID 作为键,
SQL 查询可能是这样的
select * from table1 where email = "[email protected]"
上面的等效 GQL 查询是什么?
I have three records in a table
example:
*Usernames* *email* *city*
Nick [email protected] London
Vikky [email protected] Paris
Lisa [email protected] Sydney
Now I want to get specific record keeping email ID as a key ,
SQL query may be like this
select * from table1 where email = "[email protected]"
What is the equivalent GQL query for the above ??
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 GQL 中应该可以正常工作。
请参阅此处了解更多信息
http://code.google.com/appengine/docs/python/入门/usingdatastore.html
should work fine in GQL.
See here for more information
http://code.google.com/appengine/docs/python/gettingstarted/usingdatastore.html