From: | "A(dot) Kretschmer" <andreas(dot)kretschmer(at)schollglas(dot)com> |
---|---|
To: | pgsql-general(at)postgresql(dot)org |
Subject: | Re: select with date_part and month failure.... |
Date: | 2006-04-18 08:07:11 |
Message-ID: | 20060418080711.GA5964@webserv.wug-glas.de |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-general |
am 18.04.2006, um 9:20:50 +0200 mailte P.MO folgendes:
>
>
> Hello
>
> I have the same problem against various PostgreSQL 8.1.3, 8.0.2 and 7.4.7:
>
> I have a table containing periodical invoices. it contain's the last time the
> invoce was printed and a period in month to be waited before next time.
> My querry works with date_parts on days but never with months:
>
> create temp table tstdates (
> lasttimedone date,
> period integer
> );
>
> insert into tstdates values ('2006-01-01',2);
> insert into tstdates values ('2006-02-01',2);
> insert into tstdates values ('2006-03-01',2);
> insert into tstdates values ('2006-04-01',2);
>
> -- doesn' t works :
> select * from tstdates where
> date_part('month',now()-lasttimedone) >= period;
now()-lasttimedone returns the number of days, not the months.
You can use this:
test=# select * from tstdates where date_part('month',age(lasttimedone)) >= period;
lasttimedone | period
--------------+--------
2006-01-01 | 2
2006-02-01 | 2
(2 rows)
HTH, Andreas
--
Andreas Kretschmer (Kontakt: siehe Header)
Heynitz: 035242/47215, D1: 0160/7141639
GnuPG-ID 0x3FFF606C http://wwwkeys.de.pgp.net
=== Schollglas Unternehmensgruppe ===
From | Date | Subject | |
---|---|---|---|
Next Message | usanee tuangrathooradee | 2006-04-18 08:59:13 | Give me some suggestion |
Previous Message | P.MO | 2006-04-18 07:20:50 | select with date_part and month failure.... |