Tagged Questions
4
votes
1answer
83 views
Complex count across many to many field in Django ORM
So I have a set of tasks that can appear in many categories:
class TaskGroup(models.Model):
name = models.CharField(max_length=200)
slug = models.SlugField(max_length=200)
icon = ...
3
votes
2answers
3k views
Django equivalent of COUNT with GROUP BY
I know Django 1.1 has some new aggregation methods. However I couldn't figure out equivalent of the following query:
SELECT player_type, COUNT(*) FROM players GROUP BY player_type;
Is it possible ...