Re: converting interval to timestamp

From: Mike Rylander <miker(at)n2bb(dot)com>
To: teknokrat(at)yahoo(dot)com, pgsql-sql(at)postgresql(dot)org
Subject: Re: converting interval to timestamp
Date: 2003-08-01 12:41:49
Message-ID: 200308010841.50193.miker@n2bb.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

If the number of seconds between timestamps is acceptable then this is the
solution I use:

SELECT ABS(EXTRACT(EPOCH FROM t.field1) - EXTRACT(EPOCH FROM t.field2)) AS
diff FROM table AS t;

Adjust to your column and WHERE needs. One caveat: this only works for dates
within the UNIX epoch ( after 1969-12-31).

On Thursday 31 July 2003 12:05 pm, teknokrat wrote:
> The difference of two dates/timestamps always gives an interval. is
> there a way to convert this interval into number such as number of
> milliseconds or number of days?
>
> Also does anyone know what field type an interval would map to in jdbc?
>
> thanks
>
>
>
> ---------------------------(end of broadcast)---------------------------
> TIP 9: the planner will ignore your desire to choose an index scan if your
> joining column's datatypes do not match

- --
Mike Rylander
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.0.7 (GNU/Linux)

iD8DBQE/KmAOgRDV1fFA+3cRAgbVAJ9B03Pxsn+N+Xg2C/a4gw3j28KSsgCeNA7+
y2rYedgRdTY/BiNSfVJTvOs=
=kVkm
-----END PGP SIGNATURE-----

In response to

Browse pgsql-sql by date

  From Date Subject
Next Message Jodi Kanter 2003-08-01 15:56:30 duplicate dates
Previous Message Christoph Haller 2003-08-01 11:25:00 Re: length of recordset read through a cursor