本文介绍了GQL查询帮助 - 如何使用GQL中的where子句编写查询?我正在使用谷歌appengine数据存储的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我在表格中有三条记录
示例:
*用户名* *电子邮件* *城市*
Nick [email protected]伦敦
Vikky [email protected]巴黎
Lisa [email protected]悉尼
现在我想获得具体的记录保存电子邮件ID作为关键字,
SQL查询可能是这样的
select * from table1 where email [email protected]
上面的等价GQL查询是什么?
解决方案
SELECT * FROM table1 WHERE email ='vic[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 ??
解决方案
SELECT * FROM table1 WHERE email = '[email protected]'
should work fine in GQL.
See here for more informationhttp://code.google.com/appengine/docs/python/gettingstarted/usingdatastore.html
这篇关于GQL查询帮助 - 如何使用GQL中的where子句编写查询?我正在使用谷歌appengine数据存储的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!