您好,登錄后才能下訂單哦!
from django.db.models import Count
Device.objects.extra({'install_data':"date(create_time)"}).values('install_data').annotate(count=Count('id'))
django 中 annotate和aggregate的區別:
aggregate 計算整個queryset的值,相當于count(). Annotate 對于 queryset 中的每個值在指定的屬性上進行匯總,相當于group_by.
aggregation
>>> Book.objects.aggregate(average_price=Avg('price'))
{'average_price': 34.35}
返回一個包含所有書價的平均值字典
Annotation
>>> q = Book.objects.annotate(num_authors=Count('authors'))
>>> q[0].num_authors
2
>>> q[1].num_authors
1
q是books的queryset, 但是每本書按照作者的數量進行了聚合.
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。