[Answered ]-Select all records from the parent table assuming something is present in the child

2👍

I think what you are looking for can be solved using distinct()

 result = Deal.objects.filter(meter__company=2).distinct()
👤badiya

Leave a comment