Equality operators on NULL values

Поиск
Список
Период
Сортировка
От Bertrand Petit
Тема Equality operators on NULL values
Дата
Msg-id 20030824032815.A32448@memo.frmug.org
обсуждение исходный текст
Ответы Re: Equality operators on NULL values
Список pgsql-sql
(in)Equality operators evaluates to NULL when any of their
arguments are NULL as summarized bellow.
NULL=NULL ==> NULL1=NULL    ==> NULL1=1       ==> t1=2       ==> f

I have a case where I need to delete rows from table A for records
that are designated in table B. One of the joined colum can have NULL
values. Therefore I need an operator behaving as follows:
NULL=NULL ==> t1=NULL    ==> NULL (or anything else as long as it is not t)1=1       ==> t1=2       ==> f

I replaced the use of the = operator with this expression:
nullif(tabA.col_with_nulls, tabB.col_with_nulls) IS NULL

It works correctly but the intent is not that clear.
Is there a stock replacement operator that would behave like
the second truth table?
Regards,Bertrand.

-- 
%!PS
297.6 420.9 translate 90 rotate 0 setgray gsave 0 1 1{pop 0 180 moveto 100
180 170 100 170 -10 curveto 180 -9 180 -9 190 -10 curveto 190 100 100 180
0 180 curveto fill 180 rotate}for grestore/Bookman-LightItalic findfont
240 scalefont setfont -151.536392 -63.7998886 moveto (bp)show showpage


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

Предыдущее
От: Jeff Eckermann
Дата:
Сообщение: Re: Delete denied?
Следующее
От: Peter Eisentraut
Дата:
Сообщение: Re: Equality operators on NULL values