Re: [GENERAL] Creating a date/time search function in Postgres.

2006-09-04 Thread Daniel Verite
Sean O'Loughlin wrote: > I have a question about how a certain function would look. Basically, what I > want to do is having something that would take in a 'from' date (day, month, > year) and a 'to' date (also day, month and year) and then spit back a series > of records whose timestamps

Re: [GENERAL] Creating a date/time search function in Postgres.

2006-09-03 Thread Jorge Godoy
"Sean O'Loughlin" <[EMAIL PROTECTED]> writes: > Hi all, > I have a question about how a certain function would look. Basically, what I > want to do is > having something that would take in a 'from' date (day, month, year) and a > 'to' date (also day, > month and year) and then spit back a series

[GENERAL] Creating a date/time search function in Postgres.

2006-09-03 Thread Sean O'Loughlin
Hi all,I have a question about how a certain function would look. Basically, what I want to do is having something that would take in a 'from' date (day, month, year) and a 'to' date (also day, month and year) and then spit back a series of records whose timestamps fall between those two dates. How