Re: How to filter on timestamps? - Mailing list pgsql-sql

From Mike Rylander
Subject Re: How to filter on timestamps?
Date
Msg-id ccfrjl$2po8$1@news.hub.org
Whole thread Raw
List pgsql-sql
<posted & mailed>

B.W.H. van Beest wrote:

> 
> 
> I have a table where one of the columns is of type 'TIMESTAMP'
> 
> How can I do a query to filter on the TIMESTAMP value, e.g. to obtain
> all rows earlier than a certain time stamp?

Think of the math opperators '<' and '>' as 'before' and 'after',
respectively.  ie:

SELECT * FROM table WHERE begin_date > '2004-07-06';

You can also use BETWEEN:

SELECT * FROM table WHERE update_timestamp BETWEEN '2004-07-01' AND
'2004-07-06';

Remember that when timestamps are cast to dates, they are cast with
00:00:00.0 as the time part.

See the docs on this at
http://www.postgresql.org/docs/7.4/interactive/datatype-datetime.html and
http://www.postgresql.org/docs/7.4/interactive/functions-datetime.html .

--miker
> 
> Regards,



pgsql-sql by date:

Previous
From: "Ben"
Date:
Subject: What is PG best practice for storing temporary data in functions?
Next
From: "B.W.H. van Beest"
Date:
Subject: How to filter on timestamps?