Re: Group By and wildcards...

From: Russ Brown <pickscrape(at)gmail(dot)com>
To:
Cc: pgsql-general(at)postgresql(dot)org
Subject: Re: Group By and wildcards...
Date: 2005-02-19 18:33:58
Message-ID: 42178696.8060408@gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Jon Lapham wrote:
>
> Ugh.
>
> Since I do not want to have to re-write all my aggregate function
> containing queries upon modifications to the table definitions (and I do
> not want to write multi-thousand character long SELECT statements),
> maybe it is easier to use a temp table intermediary?
>

> Ugly... ugly... any other ideas on how to do this? My table definitions
> LITERALLY have hundreds of columns, and I need access to them all.
>

How about using a view? Create a view that contains only the ID columns,
and then a second view encorporating the first view which joins to the
appropriate tables and fetches the columns you want in the output of
your query.

Just a thought.

--

Russ.

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Bruno Wolff III 2005-02-19 18:36:54 Re: Group By and wildcards...
Previous Message Bruno Wolff III 2005-02-19 18:07:15 Re: Group By and wildcards...