Re: Getting the name of the timezone, adjusted for daylight saving - Mailing list pgsql-general

From Tom Lane
Subject Re: Getting the name of the timezone, adjusted for daylight saving
Date
Msg-id 15419.1296055249@sss.pgh.pa.us
Whole thread Raw
In response to Getting the name of the timezone, adjusted for daylight saving  (Mark Morgan Lloyd <markMLl.pgsql-general@telemetry.co.uk>)
Responses Re: Getting the name of the timezone, adjusted for daylight saving
List pgsql-general
Mark Morgan Lloyd <markMLl.pgsql-general@telemetry.co.uk> writes:
> SELECT to_char(('2011-03-01 12:00' AT TIME ZONE 'GMT0BST')::TIMESTAMP
> WITH TIME ZONE, 'HH24:MI TZ');
>    to_char
> -----------
>   12:00 GMT
> (1 row)

You haven't said exactly what you were hoping to accomplish, but I
suspect the point here is to format a time according to some other zone
than the prevailing TimeZone setting.  You basically can't do that, at
least not with to_char and the timestamptz data type --- the information
just isn't there.  Consider creating a little plpgsql function that
temporarily changes the timezone setting and then calls to_char.

            regards, tom lane

pgsql-general by date:

Previous
From: Arturo Perez
Date:
Subject: Re: temporal period type and select distinct gives equality error
Next
From: Mark Morgan Lloyd
Date:
Subject: Re: Getting the name of the timezone, adjusted for daylight saving