querying a column w/ timestamp with timezone datatype - Mailing list pgsql-sql

From Anson Abraham
Subject querying a column w/ timestamp with timezone datatype
Date
Msg-id CAC9g-He80+W8fjMBZcN_8Gn5VM1Pb7_5BdjR2COdJqC3dEWH4w@mail.gmail.com
Whole thread Raw
Responses Re: querying a column w/ timestamp with timezone datatype  (Steve Crawford <scrawford@pinpointresearch.com>)
List pgsql-sql
I an 9.1 PG database: I have a column which is a timestamp w/ time zone.  So the value I have as one record in table is: 15:55:24.342848+00

If i want to find records less or greater than that timestamp, how do I construct the query?

select * from schema.table where tscol >= '15:55:24.342848+00';
select * from schema.table where tscol >= '15:55:24.342848+00'::timestamp;
select * from schema.table where tscol >= cast('15:55:24.342848+00' as timestamp with time zone);

do not work.  Do I have to convert the value to a string and substr to 15:55:24 and then convert back to a timestamp? It's been a long while since I had to query a pg table w/ a timestamp with time zone value.  Any help here would be appreciated.

pgsql-sql by date:

Previous
From: Rehan Saleem
Date:
Subject: MS-SQL Store Procedure to Postgresql Function
Next
From: Steve Crawford
Date:
Subject: Re: querying a column w/ timestamp with timezone datatype