Tagged Questions

5
votes
2answers
3k views

Django GROUP BY strftime date format

I would like to do a SUM on rows in a database and group by date. I am trying to run this SQL query using Django aggregates and annotations: select strftime('%m/%d/%Y', time_stamp) as the_date, ...
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 ...
2
votes
3answers
453 views

Django aggregation on a date range

I have been lurking and learning in here for a while. Now i have a problem that somehow i cannot see an easy solution. In order to learn django i am bulding an app that basically keeps track of booked ...
1
vote
2answers
429 views

Django aggregation query on related one-to-many objects

Here is my simplified model: class Item(models.Model): pass class TrackingPoint(models.Model): item = models.ForeignKey(Item) created = models.DateField() data = ...
1
vote
1answer
185 views

Django model manager didn't work with related object when I do aggregated query

I'm having trouble doing an aggregation query on a many-to-many related field. Here are my models: class SortedTagManager(models.Manager): use_for_related_fields = True def ...
0
votes
1answer
21 views

How to query the maximum of counts of related records satisfying a predicate

I am working on a Django app for which I have encountered a tricky aggregate query that I would like to evaluate. In the demo app of my project, I declared the following model classes for ...