[Fixed]-Django ORM join without foreign keys and without raw queries

3👍

This will work:

XKeywords.objects.filter(pk_id=my_id).extra(select={'word':'SELECT word FROM "A"."Keywords" WHERE "public"."XKeywords".k_id = "A"."Keywords".kw_id'})

or

raw_sql = """SELECT * FROM (SELECT * FROM "public"."XKeywords" WHERE pk_id = my_id) as "XK" LEFT OUTER JOIN  "A"."Keywords" as "AK" ON "AK".kw_id = "XK".k_id ;"""
XKeywords.objects.raw(raw_sql)

This is an workaround i was expecting something more “clever”. It would be nice to have something more directly like:

XKeywords.objects.filter(pk_id=my_id).join(k_id=A.kwd,from={"AKeywords":"A"})

23👍

The current way to do this is with a Subquery and an OuterRef:

Example taken from my code. Store and StoreInformation have a field called store_number.

from django.db.models import Subquery, OuterRef

Store.objects.annotate(timezone=Subquery(
      StoreInformation.objects.filter(store_number=OuterRef('store_number')).values('store_timezone')[:1]
))

This is joining to add a field called store_timezone.

Leave a comment