Tagged Questions

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
1answer
49 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) ...
1
vote
0answers
52 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
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 = ...
0
votes
2answers
22 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
2answers
56 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
97 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 ...