[Answered ]-How to join tables with ManyToManyField type in Django?

1👍

We can achieve like this,

Education.objects.filter(price__in=Price.objects.all()).select_related('Price').values_list('title', 'content', 'price__cost', 'price__created_at')

Leave a comment