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
91 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 = ...
4
votes
2answers
633 views
Using .aggregate() on a value introduced using .extra(select={…}) in a Django Query?
I'm trying to get the count of the number of times a player played each week like this:
player.game_objects.extra(
select={'week': 'WEEK(`games_game`.`date`)'}
).aggregate(count=Count('week'))
...
4
votes
1answer
2k 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 = ...
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
2answers
52 views
How to filter objects by number of ForeignKey objects WITHOUT using raw SQL?
Is this finally possible in Django? Without this feature, using ORM is kinda strange.
2
votes
1answer
40 views
Can I get a Decimal back from Avg on a DecimalField?
When using the Avg aggregate for a models.DecimalField, the returned value is a float, instead of a decimal.Decimal. Is this because my specific database (in this case sqlite3) doesn't support ...
2
votes
1answer
52 views
Average calculated on the difference on a Min and Max value in Django
I have two simple tables in Django which looks like:
class Session(models.Model):
id = models.AutoField(primary_key=True)
class Track(models.Model):
id = models.AutoField(primary_key=True)
...
2
votes
2answers
157 views
Get daily counts of objects from Django
I have a Django model with a created timestamp and I'd like to get the counts of objects created on each day. I was hoping to use the aggregation functionality in Django but I can't figure out how to ...
2
votes
1answer
169 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
137 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()
...
2
votes
3answers
471 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
51 views
Django: Group sales by month [closed]
Possible Duplicate:
Grouping dates in Django
I've got a simple Model like this:
class Order(models.Model):
created = model.DateTimeField(auto_now_add=True)
total = ...
1
vote
1answer
99 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
1answer
40 views
In Django, how can I retrieve all the most recent versions of my objects?
Lets say I am modeling a VCS with Django, using a model something like this:
class VCSItem(models.Model):
directory = models.CharField()
name = models.CharField()
revision = ...
1
vote
2answers
104 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
2answers
182 views
How to aggregate barchart data for volumes of registrations per day from Django auth?
Django auth User model has a date_joined DateTimeField. Could this be used to aggregate a list with volumes of registrations per day for days (or other time periods) in a daterange? E.g.: [(21.01, 5), ...
1
vote
1answer
100 views
Django Include Aggregate Sums of Zero
I'm working on a Django timesheet application and am having trouble figuring out how to include aggregate sums that equal zero. If I do something like:
entries = ...
1
vote
2answers
440 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
190 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
143 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
100 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
2answers
25 views
Ordering query objects in django
I'm trying to order the results of my query in a sort of parent/child manner. I'm wondering if there's an easy way to accomplish this.
Object:
Video : [id, parent_id, date] // where parent_id can ...
0
votes
1answer
101 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
23 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
2answers
63 views
Django conditional annotation
I'm surprised that this question apparently doesn't yet exist. If it does, please help me find it.
I want to use annotate (Count) and order_by, but I don't want to count every instance of a related ...
0
votes
1answer
99 views
Django Queryset creating a .values() based on the sorting of another field
I'm trying to the most likely predicted category for a datapoint. Since code is the best explanation:
models:
class DataPoint(models.Model):
#... unimportant fields
class ...
0
votes
1answer
133 views
How to use or extend Django admin to navigate thru aggregated data?
I would like to know how could I extend Django admin in order to be able to navigate the records using aggregated data.
For example: browse data aggregated by date, month, day, day of the week and ...
0
votes
1answer
34 views
Filtered annotations without removing results
Consider a model and a query using annotations, for example the following example from the Django documentation:
http://docs.djangoproject.com/en/dev/topics/db/aggregation/
...
0
votes
1answer
172 views
Aggregate feeds and grab image using Django
Im currently have some website running Drupal, using Feeds Image Grabber module (http://drupal.org/project/feeds_imagegrabber)
Because I has started learning Django, I'm trying to look what tools ...
0
votes
2answers
341 views
Django aggregation in templates?
I'm thinking a bit about the concept of Django aggregates. I don't quite "get" how they can be used in my case. Basically i have a three-tier hierarchy of objects in my model, and the lowest object ...
0
votes
0answers
128 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)
...
0
votes
1answer
208 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 ...