GQL 查询帮助 - 如何在 GQL 中编写带有 where 子句的查询?我正在使用 google appengine 数据存储

发布于 2024-08-29 06:14:05 字数 877 浏览 5 评论 0原文

我的表中有三条记录 示例:

*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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

嗫嚅 2024-09-05 06:14:05
SELECT * FROM table1 WHERE email = '[email protected]' 

在 GQL 中应该可以正常工作。

请参阅此处了解更多信息
http://code.google.com/appengine/docs/python/入门/usingdatastore.html

SELECT * FROM table1 WHERE email = '[email protected]' 

should work fine in GQL.

See here for more information
http://code.google.com/appengine/docs/python/gettingstarted/usingdatastore.html

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文