You can set two filter properties, one for greater than and one for
less than.

http://code.google.com/appengine/docs/java/javadoc/com/google/appengine/api/datastore/Query.html

Ex:

Query q = new Query(KIND);
q.addFilter("Prop" , Query.FilterOperator.GREATER_THAN_OR_EQUAL ,
startVal);
q.addFilter("Prop" , Query.FilterOperator.LESS_THAN , endVal);


On Nov 16, 9:57 am, Vik <vik....@gmail.com> wrote:
> Hie
>
> I want to find rows where  a number exist in between of two column values
> which are say numFrom and numTo.
> So does app engine query support between operator to write like
>
> select myclass where myNum in between numFrom and numTo   ?
>
> Thankx and Regards
>
> Vik
> Founderwww.sakshum.comwww.sakshum.blogspot.com

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine for Java" group.
To post to this group, send email to google-appengine-j...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.

Reply via email to