Ich habe eine folgende Tabelle projects
.
id title created_at claim_window
1 Project One 2012-05-08 13:50:09.924437 5
2 Project Two 2012-06-01 13:50:09.924437 10
A) Ich möchte die Frist mit der Berechnung finden deadline = created_at + claim_window(No. of days)
.
So etwas wie folgen.
id title created_at claim_window deadline
1 Project One 2012-05-08 13:50:09.924437 5 2012-05-13 13:50:09.924437
2 Project Two 2012-06-01 13:50:09.924437 10 2012-06-11 13:50:09.924437
B] Ich möchte auch die Projekte finden, deren Frist abgelaufen ist
id title created_at claim_window deadline
1 Project One 2012-05-08 13:50:09.924437 5 2012-05-13 13:50:09.924437
Ich versuche so etwas wie folgendes.
SELECT * FROM "projects" WHERE (DATE_PART('day', now()- created_at) >= (claim_window+1))
Aber aus irgendeinem Grund funktioniert es nicht.
timestamp without time zone
UND current_timestamp hat Datentyptimestamp with time zone
, daher bekomme ich keine richtige Antwort