Django聚合,在when条件中使用AND/OR操作符



使用以下查询集,我想在when子句中添加和/或条件,但我得到语法错误。是否有可能在单个查询集中完成,或者应该拆分?

Game.objects.prefetch_related('schedule').filter(Q(team_home_id=625) | Q(team_away_id=625), schedule__date_time_start__lte=timezone.now())
  .aggregate(
    wins=Sum(Case(When(
      score_home__gt=F('score_away') & team_home_id=625 |
      score_away__gt=F('score_home') & team_away_id=625, then=1), 
      default=0, output_field=IntegerField()
    )),
  )

根据文档,您必须在使用复杂条件时使用Q对象(就像您在filter中所做的那样)。一个例子:

When(Q(name__startswith="John") | Q(name__startswith="Paul"), then='name')

相关内容

  • 没有找到相关文章

最新更新