Re: multi-column aggregates

From: Chris Kratz <chris(dot)kratz(at)vistashare(dot)com>
To: pgsql-general(at)postgresql(dot)org
Cc: "Merlin Moncure" <mmoncure(at)gmail(dot)com>, "Tom Lane" <tgl(at)sss(dot)pgh(dot)pa(dot)us>
Subject: Re: multi-column aggregates
Date: 2006-03-13 19:29:51
Message-ID: 200603131429.51966.chris.kratz@vistashare.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

On Thursday 09 March 2006 02:18 pm, Merlin Moncure wrote:
> Chris Kratz wrote:
> > Well for anyone else who may be interested in doing something similar,
> > here is what we did. It does require typecasting going into the
> > functions, composite types and using the dot notation to get the value
> > back out of the composite object returned. But it works.
> >
> > This is what we wanted...
> >
> > select last(cur_date, some_column) from some_table....
> >
> > We got this close...
> >
> > select (last((cur_date, some_column)::last_int_agg)).value as last_int
> > from...
>
> have you looked at new row-wise comparison feature (i might be
> misunderstanding your problem)?
>
> select some_column from some_table where (cur_date, some_column) <
> '01/01/06', 99999999) order by cur_date desc, some_column desc limit
> 1;
>
> this will give you the highest value of some_column on the abitrarily
> chosen date 01/01/06 (assuming all values of some_column are less than
> 99999999).
>
> Merlin
>
> ---------------------------(end of broadcast)---------------------------
> TIP 6: explain analyze is your friend

Hello Merlin,

I have to confess I'm not real familiar with rowwise comparisons. Would this
work when you have a large number of rows. For example, give me all
individuals and their income their favorite TV Show the first and last times
they were contacted. ie | Person | First Favorite | Last Favorite | ...

Would you use a subselect for each rowwise comparison and use the result as
the value for the column?

Thanks,

-Chris

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Richard Huxton 2006-03-13 19:31:38 Re: ExtenDB
Previous Message Kevin Grittner 2006-03-13 19:27:25 Wisconsin Circuit Court Access (WCCA) on PostgreSQL