过滤器(...)和排除(...)的链接顺序是否至关重要?

时间:2014-03-05 16:35:11

标签: python django python-2.7 django-1.6

以下示例之间没有区别吗?

查询1:

objects.filter(a=b).exclude(c=d).filter(e=f).exclude(g=h).distinct()

查询2:

objects.filter(a=b).filter(e=f).exclude(c=d).exclude(g=h).distinct()

0 个答案:

没有答案