52
You are probably looking for select_related
, which is the natural way to achieve this:
pubs = publication.objects.select_related('country', 'country_state', 'city')
You can check the resulting SQL via str(pubs.query)
, which should result in output along the following lines (the example is from a postgres backend):
SELECT "publication"."id", "publication"."title", ..., "country"."country_name", ...
FROM "publication"
INNER JOIN "country" ON ( "publication"."country_id" = "country"."id" )
INNER JOIN "countrystate" ON ( "publication"."countrystate_id" = "countrystate"."id" )
INNER JOIN "city" ON ( "publication"."city_id" = "city"."id" )
The returned cursor values are then translated into the appropriate ORM model instances, so that when you loop over these publications, you access the related tables’ values via their own objects. However, these accesses along the pre-selected forward relations will not cause extra db hits:
{% for p in pubs %}
{{ p.city.city_name}} # p.city has been populated in the initial query
# ...
{% endfor %}
5
This should be useful for you:
publication = publication.objects.select_related('yourfield', 'yourfield', 'yourfield')
- [Django]-Default value for user ForeignKey with Django admin
- [Django]-Celery task that runs more tasks
- [Django]-Django stops working with RuntimeError: populate() isn't reentrant
3
Let me beginning by describing meanings of terms and get order going…
InnerJoin implies the “common” section between the two (or more) tables. Each one being performed one after the other, as your SQL query suggests.
going through your SQL query, you are looking at Publication as the main, all your query are foreign key within publication, giving you ENTIRE dataset.
if my understanding goes correctly what you are looking for in Django equivalent is filter, in chain (not Query), because Q will give you results from each Q separately and join them, while you want results from one applied onto another.
(I dont know what the dic.update({“plist”: mypublications }) does, its not clear..
Solution:
country = country.objects.all()
# gets all the country in the table of country.
country_state = countrystate.objects.all()
# get all the countrystate objects
city = city.objects.all()
# get all city objects
solution 1: in python3 you need to use __in, this works ok in Python2. and will get you country with anything from table country (not None), table countrystate (not None), table city (not None), so if anything from anyone of them, it would provide.
Note: ‘None’ (python) = ‘Null’ (SQL Database)
Getting all publications that are having anything from the above (practically will bring you anything.
publications_list = publication.objects.filter(country = country, countrystate = country_state, city = city)
# get if anyone from any of those where ‘id’ (based on which is object) match, which makes it innerjoin in itself.
- [Django]-Get distinct values of Queryset by field
- [Django]-How can I programmatically obtain the max_length of a Django model field?
- [Django]-Remove default apps from Django-admin
-1
from django.db import models
class Course(models.Model):
name=models.CharField(max_length=10)
courseid=models.CharField(max_length=30,primary_key=True)
class Enrollment(models.Model):
course=models.ForeignKey(Course,on_delete=models.CASCADE)
enrollid=models.CharField(max_length=20)
#Queryset:
k=Enrollment.objects.filter(course__courseid=1).values('id','course__courseid','course__name','enrollid')
print(k.query)
SELECT "app1_enrollment"."id", "app1_enrollment"."course_id", "app1_course"."name", "app1_enrollment"."enrollid" FROM "app1_enrollment" INNER JOIN "app1_course" ON ("app1_enrollment"."course_id" = "app1_course"."courseid") WHERE "app1_enrollment"."course_id" = 1
- [Django]-Gunicorn.errors.HaltServer: <HaltServer 'Worker failed to boot.' 3> django
- [Django]-Change the width of form elements created with ModelForm in Django
- [Django]-Fighting client-side caching in Django
-1
You don’t need an INNER JOIN nor select_related
for this simple case, because you can traverse directly in template to the city
, countrystate
, and country
– based on what I just experienced in my project.
Since your QuerySet is set via context dic['plist']
, then, in template you can just:
{% for itero in plist %}
{{ itero.title }}
{{ itero.city.city_name }}
{{ itero.citystate.citystate_name }}
{{ itero.country.country_name }}
{% endfor %}
- [Django]-How do you use get_context_data with TemplateView in Django
- [Django]-Django Many-to-Many (m2m) Relation to same model
- [Django]-How to use Query Strings for filtering Querysets in Django?