Re: Help with join syntax sought

Поиск
Список
Период
Сортировка
От James B. Byrne
Тема Re: Help with join syntax sought
Дата
Msg-id 53717.216.185.71.24.1242839276.squirrel@webmail.harte-lyne.ca
обсуждение исходный текст
Ответ на Re: Help with join syntax sought  ("James B. Byrne" <byrnejb@Harte-Lyne.ca>)
Список pgsql-general
This seems to be working.  I had to take a different approach as I
had misapprehended GROUP BY completely.


SELECT *
FROM currency_exchange_rates AS xchg1
WHERE id
  IN (
    SELECT id
    FROM currency_exchange_rates as xchg2
    WHERE
         xchg1.currency_code_base = xchg2.currency_code_base
         AND
         xchg1.currency_code_quote = xchg2.currency_code_quote
    ORDER BY currency_code_base,
             currency_code_quote,
             effective_from DESC
    LIMIT 1 )
ORDER BY currency_code_base,
         currency_code_quote,
         effective_from DESC

--
***          E-Mail is NOT a SECURE channel          ***
James B. Byrne                mailto:ByrneJB@Harte-Lyne.ca
Harte & Lyne Limited          http://www.harte-lyne.ca
9 Brockley Drive              vox: +1 905 561 1241
Hamilton, Ontario             fax: +1 905 561 0757
Canada  L8E 3C3


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

Предыдущее
От: "Leif B. Kristensen"
Дата:
Сообщение: Re: [Windows] Feedback on PG?
Следующее
От: Andy Colson
Дата:
Сообщение: Re: Help with join syntax sought