Connecting Tech Pros Worldwide Forums | Help | Site Map

Time zone string not showing

Clodoaldo Pinto Neto
Guest
 
Posts: n/a
#1: Nov 23 '05
Hi all,

I want to have the time zone string (like 'BRT') displayed after a
date-time. The date column is of the type timestamp with time zone. But
the time zone is not displayed.

It works for a timestamp without time zone column:
# select to_char(timestamp '2001-02-16 20:38:40' at time zone 'BRT',
'HH24:MI DD/MM/YYYY TZ');
to_char
----------------------
23:38 16/02/2001 UTC

It does not work for a timestamp with time zone column:
# select to_char(timestamp with time zone '2001-02-16 20:38:40-05' at
time zone 'BRT', 'HH24:MI DD/MM/YYYY TZ');
to_char
-------------------
22:38 16/02/2001

Is it the expected behavior? Should I just append the time zone
string? The problem is it could be 'BRT' or 'BRST' depending on the
date.

Regards,
Clodoaldo Pinto





__________________________________________________ _____
Yahoo! Acesso Grátis - navegue de graça com conexão de qualidade!
http://br.acesso.yahoo.com/

---------------------------(end of broadcast)---------------------------
TIP 3: if posting/reading through Usenet, please send an appropriate
subscribe-nomail command to majordomo@postgresql.org so that your
message can get through to the mailing list cleanly


Tom Lane
Guest
 
Posts: n/a
#2: Nov 23 '05

re: Time zone string not showing


=?iso-8859-1?q?Clodoaldo=20Pinto=20Neto?= <clodoaldo_pinto@yahoo.com.br> writes:[color=blue]
> It does not work for a timestamp with time zone column:
> # select to_char(timestamp with time zone '2001-02-16 20:38:40-05' at
> time zone 'BRT', 'HH24:MI DD/MM/YYYY TZ');
> to_char
> -------------------
> 22:38 16/02/2001[/color]
[color=blue]
> Is it the expected behavior?[/color]

Yes. AT TIME ZONE converts a timestamp without time zone to a timestamp
with time zone, or vice versa.

regards, tom lane

---------------------------(end of broadcast)---------------------------
TIP 4: Don't 'kill -9' the postmaster

Closed Thread


Similar PostgreSQL Database bytes