group by in django - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T15:56:41Z http://stackoverflow.com/feeds/question/475552 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/475552/group-by-in-django 0 group by in django hrundelok 2009-01-24T05:15:15Z 2009-01-24T15:49:17Z <p>How can i create simple group by query in trunk version of django?</p> <p>I need something like</p> <p>[code] SELECT name FROM mytable GROUP BY name [/code]</p> <p>actually what i want to do is simply get all entries with distinct names. </p> http://stackoverflow.com/questions/475552/group-by-in-django/475664#475664 1 Answer by Parand for group by in django Parand 2009-01-24T07:04:07Z 2009-01-24T07:04:07Z <p>Add .distinct to your queryset:</p> <pre><code>Entries.objects.filter(something='xxx').distinct() </code></pre> http://stackoverflow.com/questions/475552/group-by-in-django/475670#475670 2 Answer by hrundelok for group by in django hrundelok 2009-01-24T07:09:16Z 2009-01-24T07:09:16Z <p>this will not work because every row have unique id. So every record is distinct.. </p> <p>To solve my problem i used </p> <pre><code>foo = Foo.objects.all() foo.query.group_by = ['name'] </code></pre> <p>but this is not official API.</p> http://stackoverflow.com/questions/475552/group-by-in-django/476156#476156 2 Answer by Carl Meyer for group by in django Carl Meyer 2009-01-24T15:37:28Z 2009-01-24T15:37:28Z <p>If you need all the distinct names, just do this:</p> <pre><code>Foo.objects.values('name').distinct() </code></pre> <p>And you'll get a list of dictionaries, each one with a <strong>name</strong> 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().</p> <p>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 <em>which</em> 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, <a href="http://docs.djangoproject.com/en/dev/topics/db/aggregation/#topics-db-aggregation" rel="nofollow">aggregation support</a> was recently added to Django trunk and can take care of that for you.</p>