Re: Assigning a timestamp without timezone to a timestamp

From: chrisj <chrisj(dot)wood(at)sympatico(dot)ca>
To: pgsql-sql(at)postgresql(dot)org
Subject: Re: Assigning a timestamp without timezone to a timestamp
Date: 2006-10-03 15:45:55
Message-ID: 6622976.post@talk.nabble.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql


Brilliant, elegant and simple !!

I can't wait to try it (don't have access to Postgres 9-5 EDT) !!

thank-you !!

Andrew Sullivan wrote:
>
> On Tue, Oct 03, 2006 at 07:26:52AM -0700, chrisj wrote:
>> location, but they are the directive to all store locations saying: "In
>> the
>> context of the timezone your store is located in, these are the hours
>> you
>> should be open.
>
> Ah. Well, then, right, it _does_ have to be timezone free. That's
> actually the only case I'd use that. Sorry, I'm dim, and didn't
> understand properly what you were doing. (I read the "relative to
> the store's own time zone" to refer to the corporate office. No, I
> don't know why, either. Told you I'm dim.)
>
> Anyway, here's something that worked for me (expanding this into your
> case ought not to be too tricky):
>
> testing=# SELECT * from storetz ;
> id | timezone
> ----+----------
> 1 | -03
> (1 row)
>
> testing=# SELECT a.timestamp::timestamptz from (SELECT '2006-10-03
> 09:00'||"timezone" as timestamp from storetz where id = 1) as a;
> timestamp
> ------------------------
> 2006-10-03 12:00:00+00
> (1 row)
>
> A
> --
> Andrew Sullivan | ajs(at)crankycanuck(dot)ca
> When my information changes, I alter my conclusions. What do you do sir?
> --attr. John Maynard Keynes
>
> ---------------------------(end of broadcast)---------------------------
> TIP 5: don't forget to increase your free space map settings
>
>

--
View this message in context: http://www.nabble.com/Assigning-a-timestamp-without-timezone-to-a-timestamp-with-timezone-tf2373845.html#a6622976
Sent from the PostgreSQL - sql mailing list archive at Nabble.com.

In response to

Browse pgsql-sql by date

  From Date Subject
Next Message Bruno Wolff III 2006-10-03 17:11:25 Re: How to FindNearest
Previous Message William Leite Araújo 2006-10-03 15:19:19 Re: Update 3 columns w/ 1 function calc 3 values?