Re: searching for dates

Поиск
Список
Период
Сортировка
От Oliver Elphick
Тема Re: searching for dates
Дата
Msg-id 200104042014.f34KEua13126@linda.lfix.co.uk
обсуждение исходный текст
Ответ на searching for dates  (Birgit Jansen <birgit@eCoNeed.com>)
Список 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
>Iam not sure how to do it. >I try >select date_part('year', start_date) from sometable; >and that works but how do I
getit to only show me the years between >1990 and 2001 or some >othere set of dates. > >I would realy like to be able
tojust 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.Elphick@lfix.co.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,
becausehe trusts in thee."                                          Isaiah 26:3  
 




В списке pgsql-sql по дате отправления:

Предыдущее
От: Birgit Jansen
Дата:
Сообщение: searching for dates
Следующее
От: jdassen@cistron.nl (J.H.M. Dassen (Ray))
Дата:
Сообщение: Re: Memory exhaustion