Re: Postgresql format for ISO8601

From: "A(dot) Kretschmer" <andreas(dot)kretschmer(at)schollglas(dot)com>
To: pgsql-sql(at)postgresql(dot)org
Subject: Re: Postgresql format for ISO8601
Date: 2010-03-17 07:13:36
Message-ID: 20100317071335.GC25571@a-kretschmer.de
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

In response to Arnab Ghosh :
> Hello Friends,
>
> I want to format a timstamp with timezone column with ISO 8601 FORMAT ([YYYY]-
> [MM]-[DD]T[hh]:[mm]Z)
>
> Please let me know how to format?? I had tried with to_char but unable to
> format to ISO-8601 format.

Don't know much about ISO 8601, but i thing, to_char() should be the
solution. For instance:

test=# select to_char(now(), 'YYYY-MM-DDThh:mm TZ');
to_char
----------------------
2010-03-17T08:03 CET

If this isn't correct, please show an example for the correct format,
okay?

Regards, Andreas
--
Andreas Kretschmer
Kontakt: Heynitz: 035242/47150, D1: 0160/7141639 (mehr: -> Header)
GnuPG: 0x31720C99, 1006 CCB4 A326 1D42 6431 2EB0 389D 1DC2 3172 0C99

In response to

Responses

Browse pgsql-sql by date

  From Date Subject
Next Message Andreas Gaab 2010-03-17 09:08:25 select points of polygons
Previous Message Arnab Ghosh 2010-03-17 06:59:24 Postgresql format for ISO8601