Re: Is NULL equal to NULL or not?

Поиск
Список
Период
Сортировка
От Mike Mascari
Тема Re: Is NULL equal to NULL or not?
Дата
Msg-id 3DF52206.5060507@mascari.com
обсуждение исходный текст
Ответ на Re: Is NULL equal to NULL or not?  ("scott.marlowe" <scott.marlowe@ihs.com>)
Ответы Re: Is NULL equal to NULL or not?  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-general
scott.marlowe wrote:
> On Mon, 9 Dec 2002 jco@cornelius-olsen.dk wrote:

>>I've noticed that
>>        select NULL=NULL;
>>yields TRUE. It is also possible to select rows in this manner.
>
>
> That's NOT because null EQUALS null, but because it allowed you to assign
> one null value to another.  which technically can be done, so it came out
> true.

It *is* because null EQUALS null, on version 7.1. '=' is the
comparison operator. ':=' is the PL/pgSQL assignment operator.
Older versions of PostgreSQL allowed comparisons between NULLs
for compatibility with older versions of Access.

Mike Mascari



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

Предыдущее
От: Bruce Momjian
Дата:
Сообщение: Re: MD5 question?
Следующее
От: Rich Shepard
Дата:
Сообщение: Re: Is NULL equal to NULL or not?