Django ORM join without foreign keys and without raw queries

前端 未结 2 808

A

class AKeywords(models.Model):
    id = models.AutoField(primary_key=True, db_column=\"kw_id\")
    word = models.CharField(max_length=200)
    ...

             


        
2条回答
  •  猫巷女王i
    2021-01-13 19:55

    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.

提交回复
热议问题