From: | Franco Bruno Borghesi <fborghesi(at)gmail(dot)com> |
---|---|
To: | Craig Bryden <postgresql(at)bryden(dot)co(dot)za> |
Cc: | pgsql <pgsql-general(at)postgresql(dot)org> |
Subject: | Re: Date addition/subtraction |
Date: | 2005-05-03 17:39:48 |
Message-ID: | e13c14ec05050310396f9ad4b4@mail.gmail.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-general |
It's easy. You have to know that INTERVAL data type exist, so:
SELECT current_date - '30 days'::interval
SELECT current_timestamp - '1 hour'::interval
2005/5/3, Craig Bryden <postgresql(at)bryden(dot)co(dot)za>:
>
> Hi
>
> How in postgres can I do date/time subtraction or addition.
> e.g. If I want to get today's date - 30 days? or current_timestamp - 1
> hour?
>
> Thanks
> Craig
>
> ---------------------------(end of broadcast)---------------------------
> TIP 3: if posting/reading through Usenet, please send an appropriate
> subscribe-nomail command to majordomo(at)postgresql(dot)org so that your
> message can get through to the mailing list cleanly
>
From | Date | Subject | |
---|---|---|---|
Next Message | Scott Marlowe | 2005-05-03 17:50:12 | Re: postgresql 8 abort with signal 10 |
Previous Message | Craig Bryden | 2005-05-03 17:32:20 | Date addition/subtraction |