Re: NULL safe equality operator

Поиск
Список
Период
Сортировка
От Michael Glaesemann
Тема Re: NULL safe equality operator
Дата
Msg-id 66E74F94-8B63-43B8-8093-1FCEDEF02218@myrealbox.com
обсуждение исходный текст
Ответ на Re: NULL safe equality operator  (Christopher Kings-Lynne <chriskl@familyhealth.com.au>)
Ответы Re: NULL safe equality operator  (Christopher Kings-Lynne <chriskl@familyhealth.com.au>)
Re: NULL safe equality operator  (Michael Glaesemann <grzm@myrealbox.com>)
Список pgsql-hackers
On Nov 25, 2005, at 16:24 , Christopher Kings-Lynne wrote:

>>     when ($1 is null and $2 is not null)
>>         or ($1 is not null and $2 is null) then 0
>
> That's the same as:
>
> when $1 is null != $2 is null then 0

Yeah, I saw your commit. Nice shortcut. Also didn't know you could  
define operators using SQL functions. Tom's suggestion of NOT (a  
DISTINCT FROM b) is really cool. Much cleaner in my opinion. I learn  
a lot from these lists :)

Michael Glaesemann
grzm myrealbox com





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

Предыдущее
От: Christopher Kings-Lynne
Дата:
Сообщение: Re: NULL safe equality operator
Следующее
От: Christopher Kings-Lynne
Дата:
Сообщение: Re: NULL safe equality operator