Re: Aggregation annotate question.

2011-05-05 Thread Russell Keith-Magee
On Fri, May 6, 2011 at 1:26 AM, Satan Study Django wrote: > Hi. I've some question about aggregation annotate functions, like Max. > I don't realy like the queries it makes. Let me explain. > > Models: > class Person (models.Model): >    name =

Re: Aggregation annotate question.

2011-05-05 Thread Cal Leeming [Simplicity Media Ltd]
Hmm, +1 on this. On Thu, May 5, 2011 at 6:26 PM, Satan Study Django < satan.come.and.kill.your.family.an...@gmail.com> wrote: > Hi. I've some question about aggregation annotate functions, like Max. > I don't realy like the queries it makes. Let me explain. > > Models: > class Person

Aggregation annotate question.

2011-05-05 Thread Satan Study Django
Hi. I've some question about aggregation annotate functions, like Max. I don't realy like the queries it makes. Let me explain. Models: class Person (models.Model): name = models.CharField (max_length = 100) login = models.CharField (max_length = 30) class Home (models.Model): person