need some more select help

Поиск
Список
Период
Сортировка
От A B
Тема need some more select help
Дата
Msg-id dbbf25900907170123n5e1e5706ga5324ec5eb77d65c@mail.gmail.com
обсуждение исходный текст
Ответы Re: need some more select help  ("...tharas" <tharasp@gmail.com>)
Re: need some more select help  (Greg Stark <stark@mit.edu>)
Список pgsql-novice
I'm trying to

select a,count(1) FROM (select a from X UNION select a from Y ) group by a;

but it complains and says that the subquery must have an alias and I
have not figured it out how to add that.

Btw. is there any other way of doing what I'm doing above?

It's basically    select a,count(1) from X group by a     +  select
a,count(1) from Y  group by a  where  "+" means they should be summed
on the "a" field.

I tried
select a,sum(b)   from ( select a,count(1) as b from X group by a
union select a,count(1) as b from Y group by a) group by a

but that gave also an error asking for an alias for the subquery.

How can I solv this problem?

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

Предыдущее
От: nobs@nobswolf.info (Emil Obermayr)
Дата:
Сообщение: Re: SELECT DISTINCT and count(1)
Следующее
От: A B
Дата:
Сообщение: Re: need some more select help