Help on Union Query

Поиск
Список
Период
Сортировка
От Craig May
Тема Help on Union Query
Дата
Msg-id 20001025044450.A6123@s2.enthdimension.com.au
обсуждение исходный текст
Список pgsql-sql
Hi,

I have an Index table with the following structure:
| Node_ID (int) | Word (varchar)|

and attempting to perform a query that returns the distinct Node_ID for 
an occurence of [word] in addition to a count of that [word] within the
Node_ID.

Here is the query I have atm:

select distinct on (Node_ID) Node_ID from NodeIndex where word='[a word]' union
select count(*) from NodeIndex where Node_ID in (select distinct on (Node_ID)
Node_ID from NodeIndex where word='[a word]') order by count;


Any assistance would be appreciated.
Craig May


Enth Dimension
http://www.enthdimension.com.au



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

Предыдущее
От: Mark Volpe
Дата:
Сообщение: Re: Re: NULL
Следующее
От: Josh Berkus
Дата:
Сообщение: Re: help on createing table