标签:count ice mod 聚合函数 objects 返回字典 gre djang aggregate
#聚合查询
聚合:
from django.db.models import *
p=Book.objects.aggregate(avg_price=Avg(‘price‘))
返回字典 p={avg_price:100}
聚合函数:
- Sum, Avg, Count, Max, Min
分组聚合
p=Book.objects.values(‘pub‘)
p.annotate(number=Count(‘pub‘))
返回: [{pub:xx,number:3},{pub:yy,number:5},...]
标签:count ice mod 聚合函数 objects 返回字典 gre djang aggregate
原文地址:https://www.cnblogs.com/chenlulu1122/p/11921575.html