Thursday, March 31, 2016

Re: Q() chaining with & returns empty set

> Den 31. mar. 2016 kl. 04.14 skrev Bai Shun <wanyancan@gmail.com>:
>
> I've got a problem in using Q()

To see what's going on, try to print the SQL that Django generates for working and non-working queryset:

> print Basket.objects.filter(Q(fruit__ofkind__name__in=['apple'])&Q(fruit__ofkind__name__in=['banana'])).distinct()

> Basket.objects.filter(fruit__ofkind__name__in=['apple']).filter(fruit__ofkind__name__in=['banana']).distinct()

Print SQL like this:

print(my_queryset.query)


Erik

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/2C4D0275-020B-4236-9F11-154979510967%40cederstrand.dk.
For more options, visit https://groups.google.com/d/optout.

No comments:

Post a Comment