在queryset中查找最常见的字段值

时间:2017-04-21 22:18:48

标签: python django

我有一个PostProfile型号。我试图找出用户帖子列表中最常见的category

这是我的模特:

class Post(models.Model):
    user = models.ForeignKey(User, blank=True, null=True)
    category = models.CharField(max_length=20, choices=CATEGORY_CHOICES, default='1')

class Profile(models.Model):
    user = models.ForeignKey(User, blank=True, null=True)

    def most_common_category(self):
        posts = Post.objects.filter(user=self.user)
        for post in posts:
            print(post.category) # 1, 1, 2, 3, 2, 2, 4, 1, 2, 2

我该怎么做?

2 个答案:

答案 0 :(得分:0)

from django.db.models import Count

most_common = Post.objects.annotate(mc=Count('category')).order_by('-mc')[0].mc

您可以在the docs

中找到更多信息

答案 1 :(得分:0)

您可以使用原始查询来完成此操作。在原始查询表中必须是您给出的类Meta:或保存在数据库shema中的表名。

most_common = Post.objects.raw(select 1 as id, category, count(category) from post group by category order by count(category) desc)

或者您可以使用.values

most_common = Post.objects.values("category").annotate(count=Count('category')).order_by("-count")