Django查询集:跨多个连接排除NULL值

时间:2016-02-29 18:41:17

标签: mysql django django-queryset

我试图避免在这里使用extra(),但是还没有找到使用Django的其他查询集方法获得我想要的结果的方法。

我的模型关系如下:

EventId

在单个查询中:给定用户,我正在尝试获取他们有权访问的所有课程类型。如果用户具有包含该课程类型课程和现有导师的注册,则用户可以访问CourseType。

此用户有2个注册:一个在CourseType ID 6的课程中,另一个用于CourseType ID 7的课程,但她对CourseType ID 7的注册没有指导者,因此她无权访问CourseType ID 7。

Model: Enrollment
FK to Course
FK to User
FK to Mentor (can be NULL)

Model: Course
FK to CourseType

这样可以正常工作:获取用户已注册的所有课程类型,但是(尚未)查询指导者要求:

user = User.objects.get(pk=123)

这不会给我我想要的结果:用NULL导师值排除注册。我希望它只返回ID 6,因为这是导师的唯一注册,但它返回一个空的查询集:

In [28]: CourseType.objects.filter(course__enrollment__user=user).values('pk')
Out[28]: [{'pk': 6L}, {'pk': 7L}]

这是最后一个查询集的生成的SQL,它没有返回我想要的内容:

In [29]: CourseType.objects.filter(course__enrollment__user=user).exclude(course__enrollment__mentor=None).values('pk')
Out[29]: []

问题似乎是,在实现SELECT `courses_coursetype`.`id` FROM `courses_coursetype` INNER JOIN `courses_course` ON ( `courses_coursetype`.`id` = `courses_course`.`course_type_id` ) INNER JOIN `store_enrollment` ON ( `courses_course`.`id` = `store_enrollment`.`course_id` ) WHERE (`store_enrollment`.`user_id` = 3877 AND NOT (`courses_coursetype`.`id` IN (SELECT U0.`id` AS `id` FROM `courses_coursetype` U0 LEFT OUTER JOIN `courses_course` U1 ON ( U0.`id` = U1.`course_type_id` ) LEFT OUTER JOIN `store_enrollment` U2 ON ( U1.`id` = U2.`course_id` ) WHERE U2.`mentor_id` IS NULL))) 时,Django正在创建一个子查询,它排除了比我想要排除的行更多的行。

为了获得所需的结果,我不得不使用exclude()在WHERE子句中显式排除NULL Mentor值:

extra()

有没有办法在不使用In [36]: CourseType.objects.filter(course__enrollment__user=user).extra(where=['store_enrollment.mentor_id IS NOT NULL']).values('pk') Out[36]: [{'pk': 6L}] 的情况下获得此结果?如果没有,我应该使用Django per the docs提交票证吗?我查看了现有的门票并搜索了这个问题,但遗憾的是发现了这个问题。

我正在使用Django 1.7.10和MySQL。

谢谢!

2 个答案:

答案 0 :(得分:1)

尝试使用isnull

CourseType.objects.filter(
    course__enrollment__user=user,
    course__enrollment__mentor__isnull=False,
).values('pk')

答案 1 :(得分:0)

您可以使用 <GridView x:Name="MainGridView" IsItemClickEnabled="True" ItemsSource="{Binding AppPages}" SelectionMode="None"> <interactivity:Interaction.Behaviors> <core:EventTriggerBehavior EventName="ItemClick"> <core:CallMethodAction MethodName="GridViewItemClick" TargetObject="{Binding Mode=OneWay}" /> </core:EventTriggerBehavior> </interactivity:Interaction.Behaviors> <GridView.ItemTemplate> <DataTemplate> <Border Width="200" Height="200" BorderBrush="White" BorderThickness="2"> <Grid> <Image Width="150" Height="150" VerticalAlignment="Bottom" Source="{Binding Path=ImageSource}" /> <TextBlock HorizontalAlignment="Center" FontSize="12" FontWeight="Bold" Foreground="White" Text="{Binding Path=PageName}" /> </Grid> </Border> </DataTemplate> </GridView.ItemTemplate> <GridView.ItemContainerStyle> <Style TargetType="GridViewItem"> <Setter Property="Margin" Value="10" /> </Style> </GridView.ItemContainerStyle> </GridView> 创建复杂查询,或者使用exclude()创建复杂查询,而不是Q()

~Q()

可能会导致不同的SQL语句。

https://docs.djangoproject.com/en/1.7/topics/db/queries/#complex-lookups-with-q-objects