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
Post a Comment