Re: subtratcing dates - Mailing list pgsql-general

From Tom Lane
Subject Re: subtratcing dates
Date
Msg-id 3811.989029158@sss.pgh.pa.us
Whole thread Raw
In response to subtratcing dates  (Fran Fabrizio <ffabrizio@exchange.webmd.net>)
List pgsql-general
Fran Fabrizio <ffabrizio@exchange.webmd.net> writes:
> I want to have a query that tells me whether or not the timestamp is
> within 'limit' minutes of the current time.

A poorly documented fact is that you can coerce an integer number of
seconds into a reltime, which can then be added to or subtracted from
a timestamp.  So:

    select tstamp > now() - reltime(limit*60) from ...

should do it.

            regards, tom lane

pgsql-general by date:

Previous
From: Justin Clift
Date:
Subject: Re: Daylight savings
Next
From: Doug McNaught
Date:
Subject: Re: Data conversion question