It's not exactly like the LIKE statement, but this should work in a similar fashion and return similar results for a LIKE 'abc%'
select * from MyEntity where myField >= 'abc' and myField < 'abd' On Sep 25, 11:55 am, Bruce Aloe <[email protected]> wrote: > Hello, > > SQL supports "like" operator. I am wondering whether GQL supports the > "like" operator or not. > > I have been looking at the GQL > reference:http://code.google.com/appengine/docs/python/datastore/gqlreference.html > > However, the document doesnot mention anything it. > > Is there any official document talking about this issue? > > Any help is appreciated. Thanks. > > Bruce -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-appengine?hl=en.
