标签:关联查询 条件 django style 情况下 name cts 查询 class
Teacher.objects.filter(name__contains=‘老师‘) Teacher.objects.filter(name__icontains=‘老师‘)
(1)exact在底层会被翻译成=
(2)iexact在底层会被翻译成like
Teacher.objects.filter(name__exact=‘老师1‘) Teacher.objects.filter(name__iexact=‘老师1‘)
Student.objects.filter(name__in=[‘学生1‘,‘学生2‘,‘学生100‘])
Score.objects.filter(student__name=‘学生1‘)
#如果只想要查询学生1的python课程的成绩可以使用:
Score.objects.filter(student__name=‘学生1‘, course__name=‘python‘)
标签:关联查询 条件 django style 情况下 name cts 查询 class
原文地址:https://www.cnblogs.com/fengzi7314/p/10393261.html