GQL query help - How can I write a query with where clause in GQL ? I am using google appengine data
Posted
by srivigneshwar
on Stack Overflow
See other posts from Stack Overflow
or by srivigneshwar
Published on 2010-04-17T21:00:12Z
Indexed on
2010/04/17
21:03 UTC
Read the original article
Hit count: 656
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 ??
© Stack Overflow or respective owner