Re: converting timestamps to ints

From: "Josh Berkus" <josh(at)agliodbs(dot)com>
To: Morgan Curley <mcurley(at)e4media(dot)com>
Cc: pgsql-sql(at)postgresql(dot)org
Subject: Re: converting timestamps to ints
Date: 2001-08-03 04:25:40
Message-ID: web-96089@davinci.ethosmedia.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

Morgan,

> I am writing an app that will need to do some calcs based on
> differences
> between when a record is first inserted and when it is last updated.
> I have seen a lot of column::data-type in this list but can't find
> the
> relevant section in the documentation. Can anyone point me in the
> right
> direction?

Hmmm... apparently the docs on date/time data types could use some work.
Or some highlighting. Or something. We get this question every week.
I'll do it -- can I submit a FAQ in plain text?

Anyway, Morgan, thanks to Postgres' robust and ANSI-compliant support of
operators, computing intervals is quite simple. DATETIME is a "pure"
time value; DATE is an integer representation of time, with days as
whole numbers.

Thus:

DATETIME - DATETIME = INTERVAL
DATE - DATE = INTEGER

I don't know what's easier for you to work with; DATE/INTEGER is easier
for math, and DATETIME/INTERVAL is easier for calendar comparisons.

See the docs on data types, functions, and operators at PostgreSQL.org.

-Josh Berkus

______AGLIO DATABASE SOLUTIONS___________________________
Josh Berkus
Complete information technology josh(at)agliodbs(dot)com
and data management solutions (415) 565-7293
for law firms, small businesses fax 621-2533
and non-profit organizations. San Francisco

Attachment Content-Type Size
unknown_filename text/plain 2 bytes
unknown_filename text/plain 2 bytes
unknown_filename text/plain 2 bytes

In response to

Responses

Browse pgsql-sql by date

  From Date Subject
Next Message Josh Berkus 2001-08-03 04:28:09 Donations?
Previous Message Morgan Curley 2001-08-03 03:50:58 converting timestamps to ints