Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How do I select records in Postgres that have hour values greater than 00:00:00? The field type is Timestamp with time zone.

Example record:

"2012-07-30 07:00:00-07"

I need everything that is greater than 00:00:00

share|improve this question
1  
What did you try before posting? Did you search? Also, what's your PostgreSQL version? I'd usually downvote this as a low-effort question, but you did include sample data and expected results, and you're new. A search like [postgresql] timestamp hour would've found helpful answers, as would google.com/search?q=postgresql+timestamp+hour+greater+than – Craig Ringer Nov 21 '12 at 1:17

1 Answer

up vote 1 down vote accepted

Use extract(hour from ...). See the PostgreSQL date/time functions in the user manual.

CREATE TABLE test AS SELECT TIMESTAMP WITH TIME ZONE '2012-07-30 07:00:00-07' AS tstamp;

SELECT tstamp FROM test WHERE extract(hour from tstamp) > 0;
share|improve this answer
1  
Maybe (tstamp - date_trunc('day', tstamp) > interval '1 second') ? extract(hour from tstamp) wont help with "2012-07-30 00:59:59-07" . – Igor Romanchenko Nov 21 '12 at 9:59
@IgorRomanchenko It's not clear whether the poster means "have a time value greater than zero" or "have an hours value greater than zero". The 1st statement implies hours, the second implies time. For "Anything greater than 00:00:00" you're right; for "hour values greater than zero" my answer is. Poorly framed question. – Craig Ringer Nov 21 '12 at 15:02
@Cen Note Igor's comment for an important difference. Did you really mean "hours greater than zero" or did you mean "time greater than zero"? – Craig Ringer Nov 21 '12 at 15:03

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.