Django aggregation tutorial

by shabda on August 18, 2009

One of the new and most awaited features with Django 1.1 was aggregation. As usual, Django comes with a very comprehensive documentation for this. Here, I have tried to put this in how-to form.

Jump to howtos or Get source on Github.

Essentially, aggregations are nothing but a way to perform an operation on group of rows. In databases, they are represented by operators as sum, avg etc.

To do these operations Django added two new methods to querysets.

  1. aggregate
  2. annotate

When you are have a queryset you can do two operations on it,

  1. Operate over the rowset to get a single value from it. (Such as sum of all salaries in the rowset)
  2. Operate over the rowset to get a value for each row in the rowset via some related table.

The thing to notice is that option 1, will create one row from rowset, while option 2 will not change the number of rows in the rowset. If you are into analogies, you can think that option 1 is like a reduce and option 2 is like a map.

In sql terms, aggregate is a operation(SUM, AVG, MIN, MAX), without a group by, while annotate is a operation with a group by on rowset_table.id. (Unless explicitly overriden).

Ok enough talk, on to some actual work. Here is a fictional models.py representing a HRMS application. We will use this to see how to use aggreagtion to solve some common problems.

from django.db import models

class Department(models.Model):
    dept_name = models.CharField(max_length = 100)
    established_on = models.DateField()

    def __unicode__(self):
        return self.dept_name

class Level(models.Model):
    level_name = models.CharField(max_length = 100)
    pay_min = models.PositiveIntegerField()
    pay_max = models.PositiveIntegerField()

    def __unicode__(self):
        return self.level_name

class Employee(models.Model):
    emp_name = models.CharField(max_length = 100)
    department = models.ForeignKey(Department)
    level = models.ForeignKey(Level)
    reports_to = models.ForeignKey('self', null=True, blank=True)

    pay = models.PositiveIntegerField()
    joined_on = models.DateField()

class Leave(models.Model):
    employee = models.ForeignKey(Employee)
    leave_day = models.DateField()


"""
#Populate DB, so we can do some meaningful queries.
#Create Dept, Levels manually.
#Get the names file from http://dl.getdropbox.com/u/271935/djaggregations/names.pickle
#Or the whole sqlite database from http://dl.getdropbox.com/u/271935/djaggregations/bata.db
import random
from datetime import timedelta, date
import pickle
names = pickle.load(file('/home/shabda/names.pickle'))
for i in range(1000):
    emp = Employee()
    emp.name = random.choice(names)
    emp.department = random.choice(list(Department.objects.all()))
    emp.level = random.choice(Level.objects.all())
    try: emp.reports_to = random.choice(list(Employee.objects.filter(department=emp.department)))
    except:pass
    emp.pay = random.randint(emp.level.pay_min, emp.level.pay_max)
    emp.joined_on = emp.department.established_on + timedelta(days = random.randint(0, 200))
    emp.save()
"""

"""
employees = list(Employees.objects.all())
for i in range(100):
    employee = random.choice(employees)
    leave = Leave(employee = employee)
    leave.leave_day = date.today() - timedelta(days = random.randint(0, 365))
    leave.save()

"""

Find the total number of employees.

In sql you might want to do something like,

select count(id) from hrms_employee

Which becomes,

Employee.objects.all().aggregate(total=Count('id'))

If fact doing a connection.queries.pop() shows the exact query.

SELECT COUNT("hrms_employee"."id") AS "total" FROM "hrms_employee"

But wait, we have a builtin method already for that, Employee.objects.all().count(), so lets try something else.

Find the total pay of employees.

The CEO wants to find out what is the total salary expediture, this also converts the queryset to a single value, so we want to .aggregate here.

Employee.objects.all().aggregate(total_payment=Sum('pay'))

Gives you the total amount you are paying to your employees.

Find the total number of employees, per department.

Here we want a value per row in queryset, so we need to use aggregate here. Also, there would be one aggregated value per dpeartment, so we need to annotate Department queryset.

Department.objects.all().annotate(Count('employee'))

If you are only interested in name of department and employee count for it, you can do, Department.objects.values('dept_name').annotate(Count('employee'))

The sql is

SELECT "hrms_department"."dept_name", COUNT("hrms_employee"."id") AS "employee__count" FROM "hrms_department" LEFT OUTER JOIN "hrms_employee" ON ("hrms_department"."id" = "hrms_employee"."department_id") GROUP BY "hrms_department"."dept_name"

Find the total number of employees, for a specific department.

Here you could use either of .annotate or .aggregate,

Department.objects.filter(dept_name='Sales').values('dept_name').annotate(Count('employee'))
Department.objects.filter(dept_name='Sales').aggregate(Count('employee'))

If you see the SQLs, you will see that .annotate did a group by, while the .aggregate did not, but as there was only one row, group by had no effect.

Find the total number of employees, per department, per level

This time, we can not annotate either Department model, or the Level model, as we need to group by both department and level. So we will annotate on Employee

Employee.objects.values('department__dept_name', 'level__level_name').annotate(Count('id'))

This leads to the sql,

SELECT "hrms_department"."dept_name", "hrms_level"."level_name", COUNT("hrms_employee"."id") AS "id__count" FROM "hrms_employee" INNER JOIN "hrms_department" ON ("hrms_employee"."department_id" = "hrms_department"."id") INNER JOIN "hrms_level" ON ("hrms_employee"."level_id" = "hrms_level"."id") GROUP BY "hrms_department"."dept_name", "hrms_level"."level_name

Which combination of Employee and Deparments employes the most people

We can order on the annotated fields, so the last query is modified to,

Employee.objects.values('department__dept_name', 'level__level_name').annotate(employee_count = Count('id')).order_by('-employee_count')[:1]

Which employee name is the most common.

We can want to group by emp_name, so emp_name is added to values. After that we order on the annotated field and get the first element, to get the most common name.

Employee.objects.values('emp_name').annotate(name_count=Count('id')).order_by('-name_count')[:1]


This was a overview of how django annotations work. These remove a whole class of queries for which you had to use custom sql queries in the past.


Resources

  1. Source on Github
  2. sqlite file for this model to test
  3. Aggregation on Django docs

Want to build a Django app? Talk to us

Related posts:

  1. Doing things with Django models – aka – Django models tutorial
  2. New tutorial – Building a search engine with Appengine and Yahoo
  3. Dynamic forms with Django

8 Tweets

{ 4 trackbacks }

Peters Linkschleuder – Der Schockwellenreiter
August 19, 2009 at 1:55 am
A Drop In The Stream › links for 2009-08-23
August 23, 2009 at 11:05 pm
Django 101 | KomunitasWeb
February 17, 2010 at 8:51 am
Blog - Doing things with Django models – aka – Django models tutorial
August 19, 2010 at 2:56 am

{ 24 comments… read them below or add one }

1 Brandon Konkle August 18, 2009 at 10:04 am

Thank you very much for the detailed overview! I’ve been looking forward to aggregation because of some challenges in a project towards the beginning of this year. This is definitely a great new feature for Django.

2 Vitaly Babiy August 18, 2009 at 10:18 am

Love your posts, Another great post.

3 Walter Cruz August 18, 2009 at 12:58 pm

I have made a translation to pt_BR, put it here: http://artigos.waltercruz.com/agregacao_django_1_1/

4 shabda August 18, 2009 at 2:31 pm

@walter: Thanks very much. I would love to see more translations. All the content here is CC-BY-SA licensed. I should put up a notice for that somewhere.

5 Jeff August 18, 2009 at 7:22 pm

Thanks for the tutorial.

6 Steve Roger August 19, 2009 at 2:09 pm

Hi..Thanks for an article on Django.Presently I am working on a couple of Database projexts and really it was a tough task for me to perform aggregation.Now i found a solution for it..

7 Walter Cruz August 19, 2009 at 3:57 pm

Great, I was in doubt about the license ;)

8 Walter Cruz August 20, 2009 at 2:58 pm

IN your links, bitbucket is .org, don’t .com ;)

9 shabda August 20, 2009 at 3:30 pm

@Walter: Thanks so much. Changed it now.

10 spooky August 20, 2009 at 3:51 pm

I have a question, what if I want to get an aggregate that is a result of an arithmetic operation on two columns? eg. sql would be select foobar from buz do I have to have a custom sql or is there some way to do this using the api? (some sort of Buz.objects.aggregate(‘foobar’) )

11 spooky August 20, 2009 at 3:52 pm

correction select sum(foo*bar) from buz was the thing I wanted to write ;)

12 Charles August 20, 2009 at 9:23 pm

Great work – thanks for the post!

13 Danilo Cabello August 22, 2009 at 12:39 pm

In the last query, I think the Count should be with emp_name, not with id.

Great article!

14 martin November 13, 2009 at 9:29 am

Hi Shabda, thanks for the great tutorial! I have one scenario that i can’t seem to solve with one of the examples presented, i posted it on stackoverflow here. Any chance i could persuade you to have a look at it? Thanks! Martin

15 Django developer February 4, 2010 at 12:37 am

Nice tutorial. I just bookmarked in my browser for my development.

16 ShubinValentin25 June 8, 2010 at 8:42 am

GALAXY Marble & Granite – гранит и мрамор

Leave a Comment

Additional comments powered by BackType

Previous post:

Next post: