Re: [HACKERS] Group By, NULL values and inconsistent behaviour.

Поиск
Список
Период
Сортировка
От Zeugswetter Andreas DBT
Тема Re: [HACKERS] Group By, NULL values and inconsistent behaviour.
Дата
Msg-id 219F68D65015D011A8E000006F8590C6010A51A8@sdexcsrv1.sd.spardat.at
обсуждение исходный текст
Список pgsql-hackers
>> In the second query, the first two rows have been grouped, but
shouldn't
>> they not be since b is NULL?  I thought that NULL != NULL?

Note that:
NULL <> NULL        is false
NULL = NULL        is false

> select * from t1 x, t1 y where x.b <> y.b;
          a b  c            a b  c
No rows found.
> select * from t1 x, t1 y where x.b = y.b;
          a b  c            a b  c
No rows found.
> select * from t1 x, t1 y where not x.b = y.b;
          a b  c            a b  c
No rows found.
> select * from t1 x, t1 y where not x.b <> y.b;
          a b  c            a b  c
No rows found.
> select * from t1 where a = b;
          a b  c
No rows found.
> select * from t1 where a <> b;
          a b  c
No rows found.
>

The false seems not to be commutative.
Feel free to ask for more
Andreas


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

Предыдущее
От: Zeugswetter Andreas DBT
Дата:
Сообщение: Re: [HACKERS] Group By, NULL values and inconsistent behaviour.
Следующее
От: Zeugswetter Andreas DBT
Дата:
Сообщение: Re: [HACKERS] A small type extension example for the contrib dire ctory (fwd)