Re: How can I produce the following desired result?

Поиск
Список
Период
Сортировка
От Rod Taylor
Тема Re: How can I produce the following desired result?
Дата
Msg-id 1066184866.99719.9.camel@jester
обсуждение исходный текст
Ответ на How can I produce the following desired result?  ("aicean" <aicean@netspeed-tech.com>)
Список pgsql-sql
On Tue, 2003-10-14 at 22:09, aicean wrote:
> How can I produce the following desired result?

I'm not sure I understand the problem, but you might want to try a
subselect in the FROM.

SELECT <wanted results> FROM table JOIN (SELECT goodid         FROM table        WHERE <whatever you did to get list of
wantedgoodid>      ) AS tab      USING (goodid)WHERE <other clauses> 

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

Предыдущее
От: "aicean"
Дата:
Сообщение: How can I produce the following desired result?
Следующее
От: "aicean"
Дата:
Сообщение: Re: How can I produce the following desired result?