gpt4 book ai didi

Django : Count only non-empty CharField with annotate() & values()

转载 作者:行者123 更新时间:2023-12-04 18:07:04 24 4
gpt4 key购买 nike

Django recommends不在 CharField 上使用 null,但是 annotate 在计数中包含空字符串。有没有办法避免这种情况而不从查询中排除带有空字符串的行?

我的问题不仅仅是如何实现我的查询,而是从根本上说,Annotate/Aggregate count 是否应该包含空字段。 Django 将 empty 视为基于字符串的字段的 NULL 的替代品。

我的模型:

class Book(models.Model):
name = models.CharField(...)

class Review(models.Model):
book = models.ForeignKey()
category = models.ForeignKey()
review = models.CharField(max_length=200, default='', blank=True)

要按类别计算非空评论和分组,我使用

Review.objects.values('category').annotate(count=Count('review'))

这不起作用,因为 annotate 也计算空值(如果条目为 NULL,它就不会这样做)。我可以在注释调用之前过滤掉空字符串,但我的查询更复杂,我需要所有空对象和非空对象。

有没有更聪明的方法来使用注释并跳过计数中的空值,或者我应该从

更改模型
review = models.CharField(max_length=200, default='', blank=True)

review = models.CharField(max_length=200, default=None, blank=True, null=True)

最佳答案

我遇到过非常相似的情况。我使用 Conditional Expressions 解决了它:

review_count = Case(
When(review='', then=0),
default=1,
output_field=IntegerField(),
)
Review.objects.values('category').annotate(count=review_count)

关于 Django : Count only non-empty CharField with annotate() & values(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23853199/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com