Get daily counts of objects from Django

做~自己de王妃 提交于 2019-12-03 09:32:51

问题


I have a Django model with a created timestamp and I'd like to get the counts of objects created on each day. I was hoping to use the aggregation functionality in Django but I can't figure out how to solve my problem with it. Assuming that doesn't work I can always fall back to just getting all of the dates with values_list but I'd prefer to give the work to Django or the DB. How would you do it?


回答1:


Alex pointed to the right answer in the comment:

Count number of records by date in Django
Credit goes to ara818

Guidoism.objects.extra({'created':"date(created)"}).values('created').annotate(created_count=Count('id'))

from django.db.models import Count

Guidoism.objects \
    # get specific dates (not hours for example) and store in "created" 
    .extra({'created':"date(created)"})
    # get a values list of only "created" defined earlier
    .values('created')
    # annotate each day by Count of Guidoism objects
    .annotate(created_count=Count('id'))

I learn new tricks every day reading stack.. awesome!




回答2:


Use the count method:

YourModel.objects.filter(published_on=datetime.date(2011, 4, 1)).count()


来源:https://stackoverflow.com/questions/4878614/get-daily-counts-of-objects-from-django

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!