Re: Merging timeseries in postgres

Поиск
Список
Период
Сортировка
От David G. Johnston
Тема Re: Merging timeseries in postgres
Дата
Msg-id CAKFQuwbF-Xjb=bMzDZnaVZgap=zcOoWU=2OEy4oFab3=Z4xE7g@mail.gmail.com
обсуждение исходный текст
Ответ на Re: Merging timeseries in postgres  (Nick Babadzhanian <nb@cobra.ru>)
Ответы Re: Merging timeseries in postgres  (Begin Daniel <jfd553@hotmail.com>)
Список pgsql-general
On Thu, Jul 14, 2016 at 8:18 AM, Nick Babadzhanian <nb@cobra.ru> wrote:
Whats exactly is wrong with the following query?

select
        dx date,
        nx,
        nx1
    from
        test t
            join test1 t1 on t.dx=t1.dx1
;


​Please don't top-post.

test t join test1 t1 -- this is the default inner join, your query returns no records for the given data.

David J.
 

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

Предыдущее
От: Nick Babadzhanian
Дата:
Сообщение: Re: Merging timeseries in postgres
Следующее
От: Devrim Gündüz
Дата:
Сообщение: Re: postgresql "init script" for postgres 9.2.15