Re: how to use a date range in a join

From: Andreas Kretschmer <akretschmer(at)spamfence(dot)net>
To: pgsql-sql(at)postgresql(dot)org
Subject: Re: how to use a date range in a join
Date: 2007-03-12 19:11:19
Message-ID: 20070312191119.GA4578@KanotixBox
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

chester c young <chestercyoung(at)yahoo(dot)com> schrieb:

> trying to do something like
>
> select d.day,
> c.name
> from [dates between day1 and day2] d
> left join c.some_table;
>
> but cannot figure out what to put into the brackets.

Perhaps something like this:

test=# select current_date + (generate_series(1,10)||'day')::interval;
?column?
---------------------
2007-03-13 00:00:00
2007-03-14 00:00:00
2007-03-15 00:00:00
2007-03-16 00:00:00
2007-03-17 00:00:00
2007-03-18 00:00:00
2007-03-19 00:00:00
2007-03-20 00:00:00
2007-03-21 00:00:00
2007-03-22 00:00:00
(10 rows)

If not, sorry, then please define your problem.

Andreas
--
Really, I'm not out to destroy Microsoft. That will just be a completely
unintentional side effect. (Linus Torvalds)
"If I was god, I would recompile penguin with --enable-fly." (unknow)
Kaufbach, Saxony, Germany, Europe. N 51.05082°, E 13.56889°

In response to

Browse pgsql-sql by date

  From Date Subject
Next Message ezequias 2007-03-12 19:58:54 Installing with libs of postgresql-libs
Previous Message chester c young 2007-03-12 19:01:45 how to use a date range in a join