[GENERAL] Date addition/subtraction

2005-05-03 Thread Craig Bryden
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 [EMAIL PROTECTED] so that your
  message can get through to the mailing list cleanly


Re: [GENERAL] Date addition/subtraction

2005-05-03 Thread Franco Bruno Borghesi
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 [EMAIL PROTECTED]:
HiHow 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?ThanksCraig---(end of broadcast)---
TIP 3: if posting/reading through Usenet, please send an appropriatesubscribe-nomail command to [EMAIL PROTECTED] so that yourmessage can get through to the mailing list cleanly


Re: [GENERAL] Date addition/subtraction

2005-05-03 Thread Scott Marlowe
On Tue, 2005-05-03 at 12:32, Craig Bryden wrote:
 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?


select now()-interval'1 hour'

and so on.

---(end of broadcast)---
TIP 7: don't forget to increase your free space map settings


Re: [GENERAL] Date addition/subtraction

2005-05-03 Thread Ragnar HafstaĆ°
On Tue, 2005-05-03 at 19:32 +0200, Craig Bryden wrote:
 
 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?

easier than you think

select current_timestamp - interval '1 hour';
select current_date -interval '30 days';  -- timestamp
select current_date + interval '1 week';  -- timestamp
select date (current_date + interval '1 week');   -- date

see: 
http://www.postgresql.org/docs/8.0/interactive/functions-datetime.html

gnari



---(end of broadcast)---
TIP 5: Have you checked our extensive FAQ?

   http://www.postgresql.org/docs/faq


Re: [GENERAL] Date addition/subtraction

2005-05-03 Thread Dinesh Pandey

Select current_timestamp - '30 day'::interval
Select current_timestamp - '1 hour'::interval
 

Thanks
Dinesh Pandey

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Craig Bryden
Sent: Tuesday, May 03, 2005 11:02 PM
To: pgsql
Subject: [GENERAL] Date addition/subtraction

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 [EMAIL PROTECTED] so that your
  message can get through to the mailing list cleanly



---(end of broadcast)---
TIP 1: subscribe and unsubscribe commands go to [EMAIL PROTECTED]