Re: Dates and NULL's`

Поиск
Список
Период
Сортировка
От Lew
Тема Re: Dates and NULL's`
Дата
Msg-id iqbu6i$n6j$1@news.albasani.net
обсуждение исходный текст
Ответ на Dates and NULL's`  (John Fabiani <johnf@jfcomputer.com>)
Список pgsql-sql
On 05/10/2011 12:48 PM, John Fabiani wrote:
> Hi,
> Maybe this is a dumb question but if I have a date field that contains a NULL
> will it show up when I ask for a where date range for the same date field.
>
> Where mydate>= "2011/04/01"::date and mydate<= "2011/04/30"::date
>
> With the above where will the NULL's be selected????

How many question marks does it take to indicate an interrogative?

> I ask because I was always told that a NULL matches everything and nothing!

That's not a useful viewpoint.  The useful point is that NULL matches nothing.

It's a simple three-valued logic with NULL standing in for UNKNOWN:
<http://www.postgresql.org/docs/9.0/interactive/functions-logical.html>

The WHERE clause only selects rows for which the clause evaluates to TRUE.

So in the WHERE clause, both NULL > "2011/04/01"::date
and NULL <= "2011/04/30"::date
will fail, and so would NULL <= "2011/04/01"::date
, since none of these evaluates to TRUE.

-- 
Lew
Honi soit qui mal y pense.
http://upload.wikimedia.org/wikipedia/commons/c/cf/Friz.jpg


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

Предыдущее
От: Theodore Petrosky
Дата:
Сообщение: Re: Dates and NULL's`
Следующее
От: Tony Capobianco
Дата:
Сообщение: replace " with nothing