vote up 0 vote down star
1

How can i create simple group by query in trunk version of django?

I need something like

[code] SELECT name FROM mytable GROUP BY name [/code]

actually what i want to do is simply get all entries with distinct names.

flag

54% accept rate
Stack Overflow uses Markdown for formatting, not BBcode or whatever that is. Please edit your post and use four spaces of indendation to mark your code block. – Carl Meyer Jan 26 at 15:38

3 Answers

vote up 2 vote down

this will not work because every row have unique id. So every record is distinct..

To solve my problem i used

foo = Foo.objects.all()
foo.query.group_by = ['name']

but this is not official API.

link|flag
vote up 2 vote down

If you need all the distinct names, just do this:

Foo.objects.values('name').distinct()

And you'll get a list of dictionaries, each one with a name key. If you need other data, just add more attribute names as parameters to the .values() call. Of course, if you add in attributes that may vary between rows with the same name, you'll break the .distinct().

This won't help if you want to get complete model objects back. But getting distinct names and getting full data are inherently incompatible goals anyway; how do you know which row with a given name you want returned in its entirety? If you want to calculate some sort of aggregate data for all the rows with a given name, aggregation support was recently added to Django trunk and can take care of that for you.

link|flag
vote up 1 vote down

Add .distinct to your queryset:

Entries.objects.filter(something='xxx').distinct()
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.