How do you join two tables on a foreign key field using django ORM?

前端 未结 4 1862
天命终不由人
天命终不由人 2020-12-04 21:54

Let\'s assume I have the following models:

class Position(models.Model):
    name = models.CharField()

class PositionStats(models.Model):
    position = mod         


        
相关标签:
4条回答
  • 2020-12-04 22:35

    I've been working with django for a while now and I have had a pretty rough time figuring out the table joins, but I think I finally understand and I would like to pass this on to others so they may avoid the frustration that I had with it.

    Consider the following model.py:

    class EventsMeetinglocation(models.Model):
        id = models.IntegerField(primary_key=True)
        name = models.CharField(max_length=100)
        address = models.CharField(max_length=200)
    
        class Meta:
            managed = True
            db_table = 'events_meetinglocation'
    
    class EventsBoardmeeting(models.Model):
        id = models.IntegerField(primary_key=True)
        date = models.DateTimeField()
        agenda_id = models.IntegerField(blank=True, null=True)
        location_id = models.ForeignKey(EventsMeetinglocation)
        minutes_id = models.IntegerField(blank=True, null=True)
    
        class Meta:
           managed = True
           db_table = 'events_boardmeeting'
    

    Here we can see that location_id in EventsBoardmeeting is a foreign key for the id in EventsMeetinglocation. This means that we should be able to query the information in EventsMeetinglocation by going through EventsBoardmeeting.

    Now consider the following views.py:

    def meetings(request):
        meetingData = EventsBoardmeeting.objects.all()
        return render(request, 'board/meetings.html', {'data': meetingData })
    

    As stated many times before in may other posts, django takes care of joins automatically. When we query everything in EventsBoardmeeting we also get any related information by foreign key as well, But the way that we access this in html is a little different. We have to go through the variable used as the foreign key to access the information associated with that join. For example:

    {% for x in data %}
       {{ x.location_id.name }}
    {% endfor %}
    

    The above references ALL of the names in the table that were the result of the join on foreign key. x is essentially the EventsBoardmeeting table, so when we access x.location_id we are accessing the foreign key which gives us access to the information in EventsMeetinglocation.

    0 讨论(0)
  • 2020-12-04 22:52

    It isn't one query, but it's pretty efficient. This does one query for each table involved, and joins them in Python. More on prefetch_related here: https://docs.djangoproject.com/en/dev/ref/models/querysets/#prefetch-related

    Player.objects.filter(name="Bob").prefetch_related(
            'position__positionstats_set', 'playerstats_set')
    
    0 讨论(0)
  • 2020-12-04 22:52

    From django.db import connection In your view include the below statement:

    cursor = connection.cursor()
    cursor.execute("select * From Postion ON Position.name = Player.position JOIN
    PlayerStats ON Player.name = 
    PlayerStats.player JOIN PositionStats ON Position.name = PositionStats.player")
    solution = cursor.fetchall()
    
    0 讨论(0)
  • select_related() and prefetch_related() is your solution. They work almost same way but has some difference.

    select_related() works by creating an SQL join and including the fields of the related object in the SELECT statement. For this reason, select_related gets the related objects in the same database query. But it only works for one-to-one or one-to-many relation. Example is below-

    entry = Entry.objects.select_related('blog').get(id=5)
    or
    entries = Entry.objects.filter(foo='bar').select_related('blog')
    

    prefetch_related(), on the other hand, does a separate lookup for each relationship and does the ‘joining’ in Python. This allows it to prefetch many-to-many and many-to-one objects, which cannot be done using select_related. So prefetch_related will execute only one query for each relation. Example is given below-

    Pizza.objects.all().prefetch_related('toppings')
    
    0 讨论(0)
提交回复
热议问题