Tagged Questions
The django-queryset tag has no wiki summary.
43
votes
7answers
18k views
How to combine 2 or more querysets in a Django view?
I am trying to build the search for a Django site I am building, and in the search I am searching in 3 different models. And to get pagination on the search result list I would like to use a generic ...
38
votes
5answers
15k views
How do I do a not equal in Django queryset filtering?
In django model querysets, I see that there is a __gt and __lt for comparitive values, but is there a __ne/!=/<> (not equals?)
I want to filter out using a not equals:
Example:
Model:
bool a;
...
20
votes
3answers
10k views
Django filter — How do I go about filtering for empty or NULL names in a queryset
I have first_name, last_name & alias (optional) which I need to search for.
So, I need a query to give me all the names that have an alias set.
Only if I could do:
Name.objects.filter(alias!="")
...
18
votes
3answers
9k views
JSON Serializing Django Models with simplejson
I'd like to use simplejson to serialize a Django model. Django's serializer doesn't support dictionaries... and simplejson doesn't support Django Querysets. This is quite a conundrum.
In the model ...
14
votes
6answers
7k views
How can I filter a date of a DateTimeField in Django?
I am trying to filter a DateTimeField comparing with a date. I mean:
MyObject.objects.filter(datetime_attr=datetime.date(2009,8,22))
I get an empty queryset list as an answer because (I ...
12
votes
4answers
3k views
Getting the SQL from a Django QuerySet
How do I get the SQL that Django will use on the database from a QuerySet object? I'm trying to debug some strange behavior, but I'm not sure what queries are going to the database. Thanks for your ...
9
votes
2answers
4k views
Django Filters - or?
How would I do an "or" in a django filter.
Basically, I want to be able to list the items that either a user has added (they are listed as the creator) or the item has been approved
so I basically ...
8
votes
5answers
3k views
Checking for empty queryset in Django
What is the recommended idiom for checking whether a query returned any results?
Example:
orgs = Organisation.objects.filter(name__iexact = 'Fjuk inc')
# If any results
# Do this with the results ...
7
votes
3answers
5k views
django - convert a list back to a queryset
I have a handful of records that I would like to sort based on a computed value. Got the answer over here... like so:
sorted (Profile.objects.all (), key = lambda p: p.reputation)
on a Profile ...
6
votes
3answers
223 views
Django: remove a filter condition from a queryset
I have a third-part funtion which gives me a filtered queryset (e.g. records with 'valid'=True) but I want to remove a particular condition (e.g. to have all records, both valid and invalid).
Is ...
6
votes
2answers
1k views
Django Queryset across Models?
I have several Models and want to return a queryset of all the Models belonging to a User, I'm wondering if its possible to return one Queryset from multiple Models?
5
votes
1answer
548 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
6answers
810 views
How to implement full text search in Django?
I would like to implement a search function in a django blogging application. The status quo is that I have a list of strings supplied by the user and the queryset is narrowed down by each string to ...
5
votes
3answers
781 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 = ...
5
votes
4answers
4k views
Django - Select a random photo from each Album
Am trying to get a random photo from each album from the data created by syncr. The model (abbreviated) looks like this:
class Album(models.Model):
title = models.CharField(max_length=200)
...
5
votes
3answers
2k views
How can I get all the objects in a Django model that have a specific value for a ForeignKey field?
I have a Model with a Foreign Key of "Parent"
class Item(models.Model):
parent = models.ForeignKey(Parent)
This is the FK model
class Parent(models.Model):
name = models.CharField(blank=True, ...
4
votes
2answers
81 views
efficiency of django __in lookup for querysets
I have a complex database model set up in Django, and I have to do a number of calculations based on filter data. I have a Test object, a TestAttempt object, and a UserProfile object (with a foreign ...
4
votes
3answers
372 views
Limiting Memory Use in a *Large* Django QuerySet
I have a task which needs to be run on 'most' objects in my database once every some period of time (once a day, once a week, whatever). Basically this means that I have some query that looks like ...
4
votes
1answer
176 views
How to perform queries in Django following double-join relationships (or: How to get around Django's restrictions on ManyToMany “through” models?)
There must be a way to do this query through the ORM, but I'm not seeing it.
The Setup
Here's what I'm modelling: one Tenant can occupy multiple rooms and one User can own multiple rooms. So Rooms ...
4
votes
4answers
488 views
simple way for QuerySet union and subtraction in django?
Consider two QuerySet objects of the same class.
Is there a simple way to unify them into a single QuerySet by calculating the union?
Also, is there a simple way to subtract them? Removing all ...
4
votes
2answers
2k views
Django 1.2 Equivalent of QuerySet.query.as_sql()
In Django 1.1 I was able to produce the SQL used by a QuerySet with this notation:
QuerySet.query.as_sql()
In Django 1.2, this raises as AttributeError.
Anyone know the Django 1.2 equivalent of ...
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
3answers
2k views
4
votes
3answers
1k views
Custom QuerySet and Manager without breaking DRY?
I'm trying to find a way to implement both a custom QuerySet and a custom Manager without breaking DRY. This is what I have so far:
class MyInquiryManager(models.Manager):
def for_user(self, ...
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
3answers
918 views
Django ORM: Optimizing queries involving many-to-many relations
I have the following model structure:
class Container(models.Model):
pass
class Generic(models.Model):
name = models.CharacterField(unique=True)
cont = models.ManyToManyField(Container, ...
3
votes
1answer
48 views
Complex django query in a many to many relationship
I have the following models
class Book(models.Model):
name = models.CharField(max_length=140)
class UserProfile(models.Model):
favorites = models.ManyToManyField(Book, null=True, ...
3
votes
1answer
39 views
Django - Avoiding joins when querying foreign key ids?
Say I have a simple blog entry model in Django:
class Entry(models.Model):
author = models.ForeignKey(Author)
topic = models.ForeignKey(Topic)
entry = models.CharField(max_length=50, ...
3
votes
4answers
239 views
Django: retrieve distinct QuerySet
I've got the following models in my app. The Addition model is used to govern the many-to-many relationship between the Book model and the Collection model, since I need to include extra fields on the ...
3
votes
1answer
57 views
Django Order By Date, but have “None” at end?
I have a model of work orders, with a field for when the work order is required by. To get a list of work orders, with those that are required early, I do this:
wo = ...
3
votes
1answer
193 views
How to aggregate computed field with django ORM? (without raw SQL)
I'm trying to find the cumulated duration of some events, 'start' and 'end' field are both django.db.models.DateTimeField fields.
What I would like to do should have been written like this:
from ...
3
votes
2answers
553 views
Django: get the first object from a filter query or create
In Django, queryset provides a method called get_or_create that either returns an objects or creates an object.
However, like the get method, get_or_create can throw an exception if the query returns ...
3
votes
2answers
152 views
customizing functionality of field lookups for custom Django model fields
I have a custom model field YearWithSurenessField which is represented in python by the custom datatype YearWithSureness. The constructor for YearWithSureness is YearWithSureness(year='', ...
3
votes
1answer
62 views
Specifying Django Query Filters at Run Time
How do I specify an arbitrary Django query filter at runtime?
Normally one uses filters like so...
query_set = MyModel.objects.filter(name__iexact='foobar')
But what if I have the query filter ...
3
votes
1answer
123 views
Django: does the ORM support the SQL “IN” operator?
Does the Django ORM support the SQL IN operator? Something like:
SELECT *
FROM user
WHERE id IN (1, 5, 34, 567, 229)
How do I use the Django ORM to make a query like that?
Thanks.
3
votes
4answers
226 views
In Django, can you add a method to querysets?
In Django, if I have a model class, e.g.
from django.db import models
class Transaction(models.Model):
...
then if I want to add methods to the model, to store e.g. reasonably complex filters, ...
3
votes
2answers
1k views
django queryset for many-to-many field
I have the following Django 1.2 models:
class Category(models.Model):
name = models.CharField(max_length=255)
class Article(models.Model):
title = models.CharField(max_length=10, ...
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
71 views
Is there a way to make a query respect the order of the inputted parameters?
(Please let me know if this is completely absurd, that is probably a reason why I haven't found anything on this.)
This story has two models Ranking and Artist, Ranking is generically related to ...
3
votes
2answers
610 views
Is it possible to reference a property using Django's QuerySet.values_list?
I have a custom property on my Django model that returns the full name of a Person:
class Person(models.Model):
first_name = models.CharField(max_length=30)
last_name = ...
3
votes
2answers
165 views
Fastest Way to Update a bunch of records in queryset in Django
I have a queryset with a few million records. I need to update a Boolean Value, fundamentally toggle it, so that in the database table the values are reset. What's the fastest way to do that?
I tried ...
3
votes
1answer
405 views
How to aggregate over a single queryset in Django?
Short description: given a queryset myQueryset, how do I select max("myfield") without actually retrieving all rows and doing max in python?
The best I can think of is max([r["myfield"] for r in ...
3
votes
1answer
258 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
546 views
How can I get previous and next objects from a filtered, ordered queryset?
I have a page based on a model object, and I want to have links to the previous and next pages. I don't like my current solution because it requires evaluating the entire queryset (to get the ids ...
3
votes
1answer
235 views
Efficient week statistics for a QuerySet
I am working on an open source Django time tracking app, Djime, and I'm trying to come up with a more efficient way to produce statistics. So far, we've had some rather long-winded procedural code ...
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
28 views
Django sort the list - complex query
These are my models
class Review(models.Model):
reviewHeader = models.CharField(null=False,default="",max_length=200)
class ReviewRate(models.Model):
review = ...
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
31 views
How can I order a queryset by a filtered bridge table field?
Given the following models
class Blog(models.Model):
followers = models.ManyToManyField(User, through='Follow')
class Follow(models.Model):
blog = models.ForeignKey(Blog)
user = ...