Re: query help

Поиск
Список
Период
Сортировка
От Stephan Szabo
Тема Re: query help
Дата
Msg-id 20030514083820.X44794-100000@megazone23.bigpanda.com
обсуждение исходный текст
Ответ на query help  ("Rob Larter" <rob@cdli.co.uk>)
Список pgsql-general
On Wed, 14 May 2003, Rob Larter wrote:

> hi i am trying to execute the following query:
>
> select source,(b.source/c.total),(select count(*) from entries b where
> source = a.source) as source,(select count(*) from entries c) as total from
> entries a group by source;
>
> it says
> ERROR:  Relation "b" does not exist

Right, because it doesn't escape the subselect.

Maybe something like:
select source, ecount/etotalcount, ecount as source, etotalcount as total
from
 (select source, count(*) as ecount from entries group by source) as t,
 (select count(*) as etotalcount from entries) as t1;


В списке pgsql-general по дате отправления:

Предыдущее
От: "scott.marlowe"
Дата:
Сообщение: Re: COPY versus INSERT
Следующее
От: "scott.marlowe"
Дата:
Сообщение: Re: Schedule Jobs in Postgres