Re: timestamp with time zone

From: "Joshua D(dot) Drake" <jd(at)commandprompt(dot)com>
To: Tatsuo Ishii <ishii(at)postgresql(dot)org>
Cc: pgsql-general(at)postgresql(dot)org
Subject: Re: timestamp with time zone
Date: 2007-12-13 05:54:13
Message-ID: 4760C905.3040607@commandprompt.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Tatsuo Ishii wrote:
> Hi,

> test=# select t at time zone 'jst' from t2;
> timezone
> -------------
> 17:34:56+09
> (1 row)
>
> test=# select t::time from t2;
> t
> ----------
> 12:34:56
> (1 row)

Hello,

timezone_test=# select cast(t as time with time zone) from t2;
t
-------------
12:34:56+04
(1 row)

?

Sincerely,

Joshua D. Drake

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Uwe C. Schroeder 2007-12-13 05:55:05 For the SQL gurus out there
Previous Message Tatsuo Ishii 2007-12-13 05:12:42 timestamp with time zone