Re: UNIQUE not honoured for NULL

Поиск
Список
Период
Сортировка
От Peter Eisentraut
Тема Re: UNIQUE not honoured for NULL
Дата
Msg-id 200407072125.52871.peter_e@gmx.net
обсуждение исходный текст
Ответ на UNIQUE not honoured for NULL  (David Newall <davidn-postgres@rebel.net.au>)
Список pgsql-bugs
David Newall wrote:
> PostgreSQL version:  7.4.3 (RPMs from ftp.au.postgresql.org)
>
> Operating Sysem: Fedora Core 1
>
> CREATE TABLE t(i integer UNIQUE);
> INSERT INTO t VALUES (null);
> INSERT INTO t VALUES (null);
> SELECT coalesce(i,-999) FROM t;
>  coalesce
> ----------
>      -999
>      -999
> (2 rows)

NULL = NULL is not true, so the rows are not equal.

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

Предыдущее
От: "Dario V. Fassi"
Дата:
Сообщение: Re: [JDBC] Error in DatabaseMetaData.getColumns() with Views
Следующее
От: Peter Eisentraut
Дата:
Сообщение: Re: Can't join on null values