I have this model:
class TimeInterval(models.Model):
startTime = models.DateTimeField()
endTime = models.DateTimeField()
How can I aggregate average time interval using only the QuerySet API?
I tried this:
qs = TimeInterval.objects.extra(
select={"duration": "endTime - startTime"}).aggregate(
Avg("duration"))
but it throws:
FieldError: Cannot resolve keyword 'duration' into field. Choices are:
endTime, startTime
extra. The answers to this question contain some suggestions for how to work around this limitation. – Gareth Rees Aug 27 '12 at 21:06Avg(duration)equals toSum(endTime) - Sum(startTime) / Countor, almost,Avg(endTime) - Avg(startTime)– okm Aug 28 '12 at 6:04