How to convert 3 colums to timestamp with timezone

Hi There!

Hope this is an easy one :-D

How do I convert 3 individuel colums with type "date", "time" and
"integer" to at timestamp with timexone?

eg. tabel
cStartUnixtime cStartTime cStartZone
09-24-2004 10:27:12 -2

This I have to present as an timestamp with timezone.

Thanks in advance
Jens Arnfelt



---------------------------(end of broadcast)---------------------------
TIP 6: Have you searched our list archives?

http://archives.postgresql.org
jens.arnfelt [ So, 03 Oktober 2004 22:50 ] [ ID #453727 ]

Re: How to convert 3 colums to timestamp with timezone

On Sun, Oct 03, 2004 at 22:50:13 +0200,
Jens Arnfelt <jens.arnfelt [at] cuatro.dk> wrote:
> Hi There!
>
> Hope this is an easy one :-D
>
> How do I convert 3 individuel colums with type "date", "time" and
> "integer" to at timestamp with timexone?
>
> eg. tabel
> cStartUnixtime cStartTime cStartZone
> 09-24-2004 10:27:12 -2
>
> This I have to present as an timestamp with timezone.

You can add the date and time to get a timestamp and then use AT TIME ZONE
with the second argument being the integer times an interval of 1 hour.
Sort of like the following:
bruno=> select ('2004-9-24'::date + '10:27:12'::time) at time zone (-2 * '1 hour'::interval);
timezone
------------------------
2004-09-24 07:27:12-05
(1 row)

---------------------------(end of broadcast)---------------------------
TIP 8: explain analyze is your friend
Bruno [ Mo, 04 Oktober 2004 01:42 ] [ ID #453728 ]
Datenbanken » comp.databases.postgresql.sql » How to convert 3 colums to timestamp with timezone

Vorheriges Thema: Concurrency problem
Nächstes Thema: Re: Postgres Doubt