Bạn có thể tạo Median
lớp con của Aggregate
lớp do Ryan Murphy thực hiện ( https://gist.github.com/rdmurphy/3f73c7b1826cacee34f6c2a855 a> ). Median
thì hoạt động giống như Avg
:
from django.db.models import Aggregate, FloatField
class Median(Aggregate):
function = 'PERCENTILE_CONT'
name = 'median'
output_field = FloatField()
template = '%(function)s(0.5) WITHIN GROUP (ORDER BY %(expressions)s)'
Sau đó, để tìm giá trị trung bình của một trường sử dụng
my_model_aggregate = MyModel.objects.all().aggregate(Median('period'))
sau đó có sẵn dưới dạng my_model_aggregate['period__median']
.