Re: Retrieving NULL records

Поиск
Список
Период
Сортировка
От
Тема Re: Retrieving NULL records
Дата
Msg-id 6312635$10594607333f26167d23d2a4.83384765@config11.schlund.de
обсуждение исходный текст
Ответ на Retrieving NULL records  ("psql novice" <psql_novice@operamail.com>)
Ответы Re: Retrieving NULL records  ("Mel Jamero" <mel@gmanmi.tv>)
Список pgsql-novice
Shouldn't  = NULL  be considered a syntax error ?


Tom Lane <tgl@sss.pgh.pa.us> schrieb am 29.07.2003, 07:41:15:
> "psql novice"  writes:
> > stock=> select * from stock where qty = NULL;
>
> The correct incantation is
>
>  select * from stock where qty IS NULL;
>
> Ordinary comparisons involving NULL always fail (or more accurately,
> return NULL).  You have to use the special "is null" operator instead.
>
>             regards, tom lane
>
> ---------------------------(end of broadcast)---------------------------
> TIP 6: Have you searched our list archives?
>
>                http://archives.postgresql.org

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

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: Retrieving NULL records
Следующее
От: "Girish Bajaj"
Дата:
Сообщение: dynamic sql statements and OUT variables