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, ...
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 = ...
2
votes
1answer
158 views

Django: Count objects in a particular month

I have this model: class Person(models.Model): city = models.CharField(max_length=20, blank=True) added_date = models.DateField(default=datetime.date.today) I want to create a template/view ...
2
votes
1answer
114 views

Django - Can you use property as the field in an aggregation function?

I know the short answer because I tried it. Is there any way to accomplish this though (even if only on account of a hack)? class Ticket(models.Model): account = modelfields.AccountField() ...
1
vote
0answers
48 views

allow duplicates in django __in lookup for query set

the title, although, seemingly pointless on first glance has a specific application for my query. Essentially, I have a non, redundant lookup table that converts raw_scores to scaled_scores. In other ...
1
vote
1answer
76 views

Using an aggregate in a Django model's property

Schema Description A project could have multiple project items, and a project item could have multiple acquisition costs. For example, capital project #1 contains two project items: Qty. 1 ...
1
vote
2answers
98 views

Django model aggregation

I have a simple hierarchic model whit a Person and RunningScore as child. this model store data about running score of many user, simplified something like: class Person(models.Model): firstName = ...
1
vote
1answer
182 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 ...
1
vote
1answer
139 views

ProgrammingError when aggregating over an annotated & grouped Django ORM query

I'm trying to construct a query to get the "average, maximum and minimum number of items purchased per user". The data source is this simple sales records table: class SalesRecord(models.Model): ...
1
vote
1answer
1k views

django: time range based aggregate query

I have the following models, Art and ArtScore: class Art(models.Model): title = models.CharField() class ArtScore(models.Model): art = models.ForeignKey(Art) date = ...
1
vote
1answer
95 views

How to obtain a count of objects per auth.user?

I have a Project model similar to: class Project(models.Model): ... lead_analyst=models.ForeignKey(User, related_name='lead_analyst') ... I want to use django aggregation to return all ...
0
votes
1answer
68 views

Is it possible to order by an annotation with django TastyPie?

I'm trying to order by a count of a manyToMany field is there a way to do this with TastyPie? For example class Person(models.Model): friends = models.ManyToMany(User, ..) I want ...
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 ...
0
votes
1answer
205 views

Is it “better” to have an update field or COUNT query?

In a Django App I'm working on I've got this going on: class Parent(models.Model): name = models.CharField(...) def num_children(self): return ...