I am trying to filter a queryset using
info=members.filter(name__contains=search_string)
The problem I have is I do not know which field t
Syntax:
model_name.objects.filter(column_name='value')
Ex: In my scenario, I wanted to find out all records with status completed from the Student table.
Student.objects.filter(status="completed")