- Author:
- ubernostrum
- Posted:
- August 3, 2007
- Language:
- Python
- Version:
- .96
- Score:
- 8 (after 8 ratings)
When you have two models joined by a foreign key, it's common to want to retrieve a set of objects from the "target" of the foreign key based on whether there are any objects "pointing" to them. This snippet demonstrates how to do so, using the extra
method of the default model manager.
Note that this is probably more efficient than using two ORM methods (e.g., selecting all values from one table, and using an id__in
lookup on the other) since it does the whole thing in one query and avoids instantiating any intermediate objects.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | from django.db import backend, models
class Foo(models.Model):
name = models.CharField(maxlength=250)
class Bar(models.Model):
name = models.CharField(maxlength=250)
foo = models.ForeignKey(Foo)
# Retrieve all Foo objects which have at least one
# Bar object referencing them:
Foo.objects.extra(where=['id IN (SELECT %s FROM %s)' % (backend.quote_name('foo_id'), Bar._meta.db_table)])
# Retrieve all Foo objects which have zero Bar
# objects referencing them:
Foo.objects.extra(where=['id NOT IN (SELECT %s FROM %s)' % (backend.quote_name('foo_id'), Bar._meta.db_table)])
|
More like this
- Template tag - list punctuation for a list of items by shapiromatron 10 months, 1 week ago
- JSONRequestMiddleware adds a .json() method to your HttpRequests by cdcarter 10 months, 2 weeks ago
- Serializer factory with Django Rest Framework by julio 1 year, 5 months ago
- Image compression before saving the new model / work with JPG, PNG by Schleidens 1 year, 6 months ago
- Help text hyperlinks by sa2812 1 year, 6 months ago
Comments
Please login first before commenting.