Re: Date format

From: Michael Glaesemann <grzm(at)seespotcode(dot)net>
To: Dylan Fogarty-MacDonald <dylan(dot)fm(at)gmail(dot)com>
Cc: pgsql-novice(at)postgresql(dot)org
Subject: Re: Date format
Date: 2006-07-31 05:38:20
Message-ID: F50925C7-4286-4ABF-96BC-FB2D3F9153BF@seespotcode.net
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-novice


On Jul 31, 2006, at 14:23 , Dylan Fogarty-MacDonald wrote:

> I am using PG 7.3.4.

I strongly recommend upgrading, if not to the latest 8.1.4, then to
the most recent release of 7.3.15. These include patches to security
flaws and data-loss-incurring bugs. 8.1.4 will most likely perform
much better for you as well.

> if to_date() converts a string to date, what converts/formats date
> to string?

I think you'll want to look at TO_CHAR:

http://www.postgresql.org/docs/current/interactive/functions-
formatting.html

I've found it useful to use EXTRACT(EPOCH FROM your_timestamp) to
pass the timestamp to PHP, and then use the PHP timestamp formating
functions.

http://www.postgresql.org/docs/current/interactive/functions-
datetime.html#FUNCTIONS-DATETIME-EXTRACT

Hope this helps.

Michael Glaesemann
grzm seespotcode net

In response to

  • Date format at 2006-07-31 05:23:26 from Dylan Fogarty-MacDonald

Responses

Browse pgsql-novice by date

  From Date Subject
Next Message Michael Glaesemann 2006-07-31 05:41:24 Re: Date format
Previous Message Dylan Fogarty-MacDonald 2006-07-31 05:23:26 Date format