1
vote
1answer
80 views
django: time range based aggregate query
Hi there!
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
79 views
Display Django values() on Foreign Key in template as object instead of its id
I have a queryset in Django that calls Model.objects.values('item')... where 'item' is a Foreign Key.
class Words(models.Model):
word = models.CharField()
class Frequency(models.Model):
word = …
0
votes
1answer
32 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
0answers
61 views
How to create annotation on filtered data in Django ORM?
I have the following models:
class ApiUser(models.Model):
apikey = models.CharField(max_length=32, unique=True)
class ExtMethodCall(models.Model):
apiuser = models.ForeignKey(ApiUser)
…
3
votes
3answers
512 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 …
1
vote
2answers
916 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, …
0
votes
0answers
12 views
Is there any way to get aggregates returned in the same order they came in?
I have a list of db columns that are in a particular order. Those columns are passed to a queryset and will be made into an aggregate:
for field in columns.as_list():
if field in AGG_FIELDS:
…
0
votes
1answer
127 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 …
