google app engine - q = filter('city =', 'Seattle' or 'Osaka') correct or not? -


i want find customers come seattle or osaka. correct?

q = customer.all() q = filter('city =', 'seattle' or 'osaka') 

no. want

q.filter('city in', ['seattle','osaka']) 

Comments

Popular posts from this blog

rdbms - what exactly the undo information lives in oracle? -

bash - How do you programmatically add a bats test? -

clojure - 'get' replacement that throws exception on not found? -