Re: SQL and function reference?

From: "Rodolfo J(dot) Paiz" <rpaiz(at)simpaticus(dot)com>
To: Michael Fuhr <mike(at)fuhr(dot)org>
Cc: Alexander Borkowski <alexander(dot)borkowski(at)abri(dot)une(dot)edu(dot)au>, pgsql-novice(at)postgresql(dot)org
Subject: Re: SQL and function reference?
Date: 2005-01-26 16:39:41
Message-ID: 1106757581.5295.50.camel@rodolfo.gt.factorrent.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-novice

On Tue, 2005-01-25 at 10:00 -0700, Michael Fuhr wrote:
> On Tue, Jan 25, 2005 at 10:07:35AM -0600, Rodolfo J. Paiz wrote:
> >
> > After a good 15 minutes of searching, I'm still looking for a way to use
> > age() to get how many *days* ago something happened, expressed as an
> > integer rather than an interval.
>
> Subtracting two dates yields an integer (see the "Date/Time Operators"
> table in the "Date/Time Functions and Operators" section of the
> documentation). If you have timestamps then you could cast them
> to date and then subtract. You could also use extract(epoch from
> interval_value) to get the number of seconds in an interval, then
> divide that by 86400 (24*60*60) to get days.
>

The idea here is to have a formula that says "select * from flights
where date was less than 30 days ago" and have that formula work
properly. So if I want to subtract two dates for this purpose, then I am
going to need a today() function which I also have not found.

I see now how the extract(epoch from interval) could be used, but then
why is there no extract(days|months|hours from interval), or why can I
not format an interval as "XXXXX seconds" or "YYY days"? Would make
things so much simpler!

Cheers,

--
Rodolfo J. Paiz <rpaiz(at)simpaticus(dot)com>

In response to

Responses

Browse pgsql-novice by date

  From Date Subject
Next Message Rodolfo J. Paiz 2005-01-26 16:58:35 Re: SQL and function reference?
Previous Message Jeff Eckermann 2005-01-26 16:07:23 Re: Error Help