Re: searching for dates

From: "Oliver Elphick" <olly(at)lfix(dot)co(dot)uk>
To: Birgit Jansen <birgit(at)eCoNeed(dot)com>
Cc: pgsql-sql(at)postgresql(dot)org
Subject: Re: searching for dates
Date: 2001-04-04 20:14:56
Message-ID: 200104042014.f34KEua13126@linda.lfix.co.uk
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

Birgit Jansen wrote:
>I am trying to select from a table all rows that have a date befor
>1/1/2001 or after some date
>I am not sure how to do it.
>I try
>select date_part('year', start_date) from sometable;
>and that works but how do I get it to only show me the years between
>1990 and 2001 or some
>othere set of dates.
>
>I would realy like to be able to just have a function to tell me if a
>date in my datebase is
>befor or after a date?

SELECT *
FROM table
WHERE start_date BETWEEN '1990-01-01' AND '2001-12-31';

--
Oliver Elphick Oliver(dot)Elphick(at)lfix(dot)co(dot)uk
Isle of Wight http://www.lfix.co.uk/oliver
PGP: 1024R/32B8FAA1: 97 EA 1D 47 72 3F 28 47 6B 7E 39 CC 56 E4 C1 47
GPG: 1024D/3E1D0C1C: CA12 09E0 E8D5 8870 5839 932A 614D 4C34 3E1D 0C1C
========================================
"Thou will keep him in perfect peace, whose mind is
stayed on thee, because he trusts in thee."
Isaiah 26:3

Browse pgsql-sql by date

  From Date Subject
Next Message J.H.M. Dassen Ray 2001-04-04 20:33:47 Re: Memory exhaustion
Previous Message Birgit Jansen 2001-04-04 19:27:01 searching for dates