TIME column manipulation/comparison hangups - Mailing list pgsql-general

From Bill Moran
Subject TIME column manipulation/comparison hangups
Date
Msg-id 20081103140118.72d55ca9.wmoran@collaborativefusion.com
Whole thread Raw
Responses Re: TIME column manipulation/comparison hangups  (Raymond O'Donnell <rod@iol.ie>)
Re: TIME column manipulation/comparison hangups  ("Scott Marlowe" <scott.marlowe@gmail.com>)
List pgsql-general
I'm trying to test the time in a time column to see if it's the same
minute as the current time.  I wouldn't have thought this would be
difficult:

WHERE TO_CHAR(now(), 'HH24MI') = TO_CHAR(time_column, 'HH24MI')

Doesn't work, though:
ERROR:  function to_char(time with time zone, unknown) does not exist

So, I tried to force it:
WHERE TO_CHAR(now(), 'HH24MI') = TO_CHAR(time_column::TIMESTAMP WITH TIME ZONE, 'HH24MI')

Which led to an invalid cast.  I also tried using date_trunc() with no
success.  It seems as if EXTRACT() will work, but it sure feels hacky
to do:

(extract(hours from now()) = extract(hours from time_column)
 AND
 (extract(minutes from now()) = extract(minutes from time_column)

Am I missing something obvious?  Anyone have any better methods for
doing this?  I'm working on 8.3.

--
Bill Moran
Collaborative Fusion Inc.
http://people.collaborativefusion.com/~wmoran/

wmoran@collaborativefusion.com
Phone: 412-422-3463x4023

pgsql-general by date:

Previous
From: Jason Long
Date:
Subject: Debugging infrequent pegged out CPU usage
Next
From: Raymond O'Donnell
Date:
Subject: Re: TIME column manipulation/comparison hangups