The django-queries tag has no wiki summary.
11
votes
9answers
4k views
Django filter versus get for single object?
I was having a debate on this with some colleagues. Is there a preferred way to retrieve an object in Django when you're expecting only one?
The two obvious ways are:
try:
obj = ...
9
votes
2answers
1k views
Django Query That Get Most Recent Objects From Different Categories
I have two models A and B. All B objects have a foreign key to an A object. Given a set of A objects, is there anyway to use the ORM to get a set of B objects containing the most recent object created ...
6
votes
1answer
145 views
How to reduce queries in django model has_relation method?
Here are two example Django models. Pay special attention to the has_pet method.
class Person(models.Model):
name = models.CharField(max_length=255)
def has_pet(self):
return ...
6
votes
2answers
726 views
Django Category and Subcategory searches
I'm attempting to use a similar Category implementation to this one in the Django Wiki. I'm wondering what the Django way of doing a search to pull all objects associated with a parent category. For ...
5
votes
1answer
550 views
django - query filter on manytomany is empty
In Django is there a way to filter on a manytomany field being empty or null.
e.g.
class TestModel(models.Model):
name = models.CharField(_('set name'), max_length=200)
manytomany = ...
5
votes
3answers
783 views
Count number of records by date in Django
I'm using Django 1.1 with MySQL as the database.
I have a model similar to the following:
class Review(models.Model):
venue = models.ForeignKey(Venue, db_index=True)
review = ...
4
votes
1answer
41 views
Complex grouping and averages in Django
I have a model structure like this:
class Author(models.Model):
name = models.CharField(max_length=100)
age = models.IntegerField()
class Book(models.Model):
published = ...
4
votes
2answers
577 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
2answers
158 views
django Queryset with year(date) = '2010'
I'm trying to build this query
select * from m_orders where year(order_date) = '2010'
the field order_date is a DateTime field. I just don't want to use raw sql queries here. Is it even possible ...
4
votes
1answer
470 views
Django query case-insensitive list match
I have a list of names that I want to match case insensitive, is there a way to do it without using a loop like below?
a = ['name1', 'name2', 'name3']
result = ...
4
votes
2answers
407 views
How to properly query a ManyToManyField for all the objects in a list (or another ManyToManyField)?
I'm rather stumped about the best way to build a Django query that checks if all the elements of a ManyToMany field (or a list) are present in another ManyToMany field.
As an example, I have several ...
4
votes
1answer
242 views
How to filter/exclude inactive comments from my annotated Django query?
I'm using the object_list generic view to quickly list a set of Articles. Each Article has comments attached to it. The query uses an annotation to Count() the number of comments and then order_by() ...
3
votes
3answers
78 views
Self-referential Queries in Django
Say I have a model that looks like:
class StockRequest(models.Model):
amount_requested = models.PositiveIntegerField(null=True)
amount_approved = models.PositiveIntegerField(null=True)
Is ...
3
votes
2answers
266 views
Using a string as the argument to a Django filter query
I'm trying to do a django query, but with the possibility of several different WHERE parameters. So I was thinking of doing something like:
querystring = "subcat__id__in=[1,3,5]"
...
3
votes
2answers
1k views
Django query select distinct by field pairs
I have the field 'submission' which has a user and a problem. How can I get an SQL search result which will give a list of only one result per user-problem pair?
Models are like this:
class ...
3
votes
2answers
145 views
specify group by field in django 1.2
I want to use annotate to count the number of occurances in my model, however it is not using the right field in the group by statment. instead of using the field i want (i.e. the one specified in ...
3
votes
4answers
2k views
A left outer reverse select_related in Django?
Imagine the following model:
class Parent(Model):
...
class Child(Model)
father = ForeignKey(Parent)
...
Some parents have children, others do not (they're not parents in the real ...
3
votes
3answers
385 views
get foreign key objects in a single query - Django
I have 2 models in my django code:
class ModelA(models.Model):
name = models.CharField(max_length=255)
description = models.CharField(max_length=255)
created_by = models.ForeignKey(User)
...
3
votes
4answers
5k views
Django Foreign key queries
In the following model:
class header(models.Model):
title = models.CharField(max_length = 255)
created_by = models.CharField(max_length = 255)
def __unicode__(self):
return ...
3
votes
3answers
2k views
Django filter vs exclude
Is there a difference between filter and exclude in django? If I have
self.get_query_set().filter(modelField=x)
and I want to add another criteria, is there a meaningful difference between to ...
3
votes
1answer
259 views
Implementating a logical parser in django-query
This is going to be a "long one". I'm including as much code and explanation as possible ... I'm not above throwing out code if necessary.
I'm trying to implement a logical parser in a django query ...
3
votes
2answers
120 views
A puzzle concerning Q objects and Foreign Keys
I've got a model like this:
class Thing(models.Model):
property1 = models.IntegerField()
property2 = models.IntegerField()
property3 = models.IntegerField()
class Subthing(models.Model):
...
3
votes
2answers
976 views
How to sort by annotated Count() in a related model in Django
I'm building a food logging database in Django and I've got a query related problem.
I've set up my models to include (among other things) a Food model connected to the User model through an ...
2
votes
4answers
91 views
Filtering a model in Django based on a condition upon the latest child record
I have two models like this:
class Store(models.Model):
name = models.CharField(max_length=255)
class Order(models.Model):
store = models.ForeignKey(Store)
date = ...
2
votes
2answers
54 views
Max function django model
I have the relationship follow as:
class Question(models.Model):
content = models.CharField(max_length=128)
class Answer(models.Model):
content = models.CharField(max_length=128)
question = ...
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)
...
2
votes
1answer
414 views
'RelatedManager' object is not iterable Django :S
Hey i have looked around through some simliar posts here on SO but havent found anything that has solved my problem. I have the following models,
from django.db import models
class ...
2
votes
3answers
140 views
how to use __year and __in in the same query?
So here's what I'm trying to do.
I've a list with years inside, for instance years = [2002, 2003, 2004]
and I've a SomethingModel with a DateField
I want to do a query that will return me all the ...
2
votes
1answer
153 views
Effeciently Lookup Multiple Model Foreign Key Sets in Django
I have two models:
from django.db import Models
LANGUAGES = (
('en','English'),
('es','Spanish'),
)
class Group(models.Model):
key = models.CharField(max_length=200)
class Data(models.Model):
...
2
votes
1answer
253 views
Django dynamic url. what am i doing wrong?
So I have this URL scheme:
(r'^test/(?P<name>\d+)/', 'test'),
def test(request, name):
html = "it worked"
return HttpResponse(html)
however, when I go to the following URL, I get a ...
2
votes
1answer
322 views
Django nested QuerySets
I have a Django data model like this (data fields omitted):
class Atom(Model):
pass
class State(Model):
atom = ForeignKey(Atom)
class Transition(Model):
atom = ForeignKey(Atom)
...
2
votes
3answers
124 views
Does a django query save its result after it's been called?
I'm trying to determine whether or not a simple caching trick will actually be useful. I know Django querysets are lazy to improve efficiency, but I'm wondering if they save the result of their query ...
2
votes
1answer
296 views
Django/GAE: How to filter query set on foreignkey?
I have two very simple classes Submission and Store
class Submission(models.Model):
title = models.CharField(max_length=50, null=True, blank=True)
description = ...
2
votes
1answer
92 views
Django not like statement
how to use not like in django queries
Model.objects.filter(keywords not like "null" or "undefined")
select * from model where keywords not like "%undefined%" or keywords not like ...
2
votes
4answers
252 views
Django query using or condition
In django how to query the following
profile_setting = pSetting.objects.get(module="my_mod",setting_value=1) or pSetting.objects.get(module="my_mod",setting_value=0)
2
votes
2answers
96 views
django query using and clause
How to use and clause in Django
For ex:
select Date(timestamp) from userlog where (Date(timestamp) >= "2008-01-02" and Date(timestamp) <= "2009-01-02") and ipaddress != "192.168.2.211";
...
2
votes
1answer
249 views
Django select distinct sum
I have the following (greatly simplified) table structure:
Order:
order_number = CharField
order_invoice_number = CharField
order_invoice_value = CharField
An invoice number can be ...
1
vote
2answers
38 views
In Django, how can I perform the following many-to-many query (using a through table)?
In my model I have a table for users (who are students or instructors - I have a UserProfile table that is connected to auth.User), a table for courses, and a table called enrollment, which records ...
1
vote
2answers
38 views
Django: How do I use a string as the keyword in a Q() statement?
I suspect this is a very common problem.
I'm writing a simple search form for a certain model. Let's call the model Orchard and give it the attributes apples, oranges, and pears, just for the sake of ...
1
vote
5answers
67 views
I don't want any ordering to be applied to a query. How can I do it?
I don't want any ordering to be applied to a query. So, I have a QuerySet follow as:
question_obj = Question.objects.filter(pk__in=[100,50,27,35,10,42,68]).order_by()
However, when I retrieve the ...
1
vote
1answer
69 views
Django query optimization
Hi i am have a model with a lot of entries(by lot of i mean more than 12513262) and they are supposed to increase exponentially. But the problem is due to this large no. entries qurying is taking a ...
1
vote
2answers
65 views
Field available via Django shell but not via web application
On the web page, I get the following error:
FieldError at /foo/bar/
Cannot resolve keyword 'foos' into field. Choices are: __unused__, [snip]
The problem code is
...
1
vote
1answer
16 views
Querying all objects that don't exist in another model
I have two models, Picture and SubmittedPicture as follows:
class Picture(models.Model):
user = models.ForeignKey(User)
pic = ImageField(upload_to='userpics/%Y/%m/%d/%H')
class ...
1
vote
2answers
91 views
Django: get unique object list from QuerySet
I have the following (simplified) models in my Django app:
class Color(models.Model):
name = models.CharField(max_length=10)
class Item(models.Model):
name = models.CharField(max_length=200)
...
1
vote
1answer
49 views
Django query to get all ads whose keyword sets are contained by a search string
I am trying to implement an advertising system in Django. My model for ads is as follows:
class Ad(models.Model):
...
campaign = models.ForeignKey(Campaign)
keyword = ...
1
vote
1answer
40 views
How to fetch data from model and all of his childrens?
i have models:
class Article(models.Model):
...
class Category(models.Model):
...
parent = models.ForeignKey(Category, etc.)
...
I would like to retrieve all articles in category, ...
1
vote
2answers
71 views
Django: What's the fastest way to order a QuerySet based on the count of a related field?
I've got an Item model in my Django app with a ManyToMany field that's handled through an intermediate Favorite model. Here are simplified versions of the models in question:
class ...
1
vote
2answers
52 views
Distinct values in ManyToManyField over a subset of objects in Django
In my models I have the classes Book and Category defined like this:
class Category(models.Model):
name = models.CharField()
class Book(models.Model):
title = models.CharField()
...
1
vote
1answer
91 views
Optimizing Django queries
I have a page where users can see the comments list for a specific product.
In the view I get the list with:
comments = product.comments.all().order_by('-timestamp')
and this piece in the template:
...
1
vote
1answer
26 views
django orm depth search
guys i have three classes
class A(models.Model):
id = models.AutoField(primary_key=True)
image1 = models.ImageField(verbose_name="Product 1 Image",upload_to='product')
image2 = ...