一、 聚合函数
使⽤aggregate()过滤器调⽤聚合函数。聚合函数包括:Avg平均,Count数量,Max最⼤,Min最⼩,Sum求和,被定义在django.db.models中。
1、例:查询影⽚的总播放量。
from django.db.models import Sum,Avg,Count,Max,Min
FilmInfo.objects.aggregate(Sum('playcount'))
{'playcount__sum': 200420}
注意: aggregate 的返回值是⼀个字典类型,格式如下:
{‘属性名__聚合类⼩写’:值}
如:{‘playcount__sum’: 30000}
使⽤count时⼀般不使⽤aggregate()过滤器。
2、例:查询影⽚总数。
FilmInfo.objects.aggregate(Count('fid'))
{'fid__count': 7}
3、查询电影编号大于1时,一共有多少影片
FilmInfo.objects.filter(fid__gt=1).aggregate(Count('fid'))
{'fid__count': 1}
二、排序
使⽤ order_by 对结果进⾏排序,默认降序排序,如果升序排序,字段前面加-
默认升序
FilmInfo.objects.all().order_by('playcount')
<QuerySet [<FilmInfo: django>, <FilmInfo: 我爱你中国>, <FilmInfo: 我爱你china>, <FilmInfo: 我和我的家人>, <FilmInfo: 金刚狼>, <FilmInfo: 夺冠>, <FilmInfo: shell>]>
降序
FilmInfo.objects.all().order_by('-playcount')
<QuerySet [<FilmInfo: shell>, <FilmInfo: 夺冠>, <FilmInfo: 金刚狼>, <FilmInfo: 我和我的家人>, <FilmInfo: django>, <FilmInfo: 我爱你中国>, <FilmInfo: 我爱你china>]>
特别注意1:只有查询集才能对其进行排序操作,
所以对模型类.objects.get().order_by()进行操作,会报错;