Model.objects.all()
: Retrieve all objects in the model.Model.objects.get()
: Retrieve a single object that matches the query.Model.objects.filter()
: Retrieve objects that match the specified lookup parameters.Model.objects.exclude()
: Retrieve objects that do not match the specified lookup parameters.