how to get data from multiple tables in django
from App.models import Student, Subject
def myFunc():
students = Student.objects.all()
for student in students:
subj = student.subject.sub
def myFunc2():
subjects = Subject.objects.all()
for subject in subjects:
student_name = subject.student.nm