Re: [GENERAL] TIMESTAMP with a timezone offset

2008-12-16 Thread Tom Lane
Madison Kelly writes: > I was reading that before posting, but have not been able to get it to > work. After looking at it again I think it's because I've cast the > column I restricted in the SELECT as a 'TIMESTAMP WITHOUT TIME ZONE'. So > I ALTERed the column to be 'TIMESTAMP WITH TIME ZONE'

Re: [GENERAL] TIMESTAMP with a timezone offset

2008-12-16 Thread Madison Kelly
Raymond O'Donnell wrote: On 16/12/2008 19:16, Madison Kelly wrote: I want to say in my WHERE clause to offset the value I am giving by X number of hours and to display the column I've cast as a timestamp offset by the same X hours. You could use AT TIME ZONE to shift it the required number o

Re: [GENERAL] TIMESTAMP with a timezone offset

2008-12-16 Thread Raymond O'Donnell
On 16/12/2008 19:16, Madison Kelly wrote: > I want to say in my WHERE clause to offset the value I am giving by X > number of hours and to display the column I've cast as a timestamp > offset by the same X hours. You could use AT TIME ZONE to shift it the required number of hours: http://www.po