I query a model:

Members.objects.all()

And it returns:

Eric, Salesman, X-Shop
Freddie, Manager, X2-Shop
Teddy, Salesman, X2-Shop
Sean, Manager, X2-Shop

What I want is to know the best Django way to fire
a group_by query to my database, like:

Members.objects.all().group_by('designation')

Which doesn’t work, of course.
I know we can do some tricks on django/db/models/query.py, but I am just curious to know how to do it without patching.

12 Answers
12

Leave a Reply

Your email address will not be published. Required fields are marked *