Re: Datetime

From: Michael Glaesemann <grzm(at)myrealbox(dot)com>
To: Achilleus Mantzios <achill(at)matrix(dot)gatewaynet(dot)com>
Cc: "Pedro B(dot)" <pedro(dot)borracha(at)netcabo(dot)pt>, pgsql-sql(at)postgresql(dot)org
Subject: Re: Datetime
Date: 2004-08-03 11:31:11
Message-ID: 9F40F448-E540-11D8-8966-000A95C88220@myrealbox.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql


On Aug 3, 2004, at 7:23 PM, Achilleus Mantzios wrote:

> now() returns the current UNIX (your running UNIX right?) timestamp
> which
> in turn is
> measured in seconds,miliseconds since the epoch.
> i.e. 1970-01-01 00:00:00

I believe this is incorrect. I believe PostgreSQL uses its own
timestamp datatype internally (which is, indeed, not as text in an
easy-to-read form). On my machine (running cvs-head),

test=# select now();
now
-------------------------------
2004-08-03 20:27:18.822646+09
(1 row)

which is definitely not seconds.milliseconds since epoch. You can use
extract to get seconds.milliseconds from epoch, but I don't think this
is how it's stored internally.

test=# select extract(epoch from now());
date_part
-----------------
1091532506.3222
(1 row)

Just some additional trivia, current_timestamp is an SQL-spec compliant
alias for now(), and might be a better choice if one is concerned with
compatibility.

Michael Glaesemann
grzm myrealbox com

In response to

  • Re: Datetime at 2004-08-03 10:23:14 from Achilleus Mantzios

Responses

  • Re: Datetime at 2004-08-03 11:50:43 from Achilleus Mantzios

Browse pgsql-sql by date

  From Date Subject
Next Message Achilleus Mantzios 2004-08-03 11:50:43 Re: Datetime
Previous Message Devrim GUNDUZ 2004-08-03 10:58:26 Re: Datetime