Re: NULL safe equality operator

Поиск
Список
Период
Сортировка
От Christopher Kings-Lynne
Тема Re: NULL safe equality operator
Дата
Msg-id 4386BC12.7050007@familyhealth.com.au
обсуждение исходный текст
Ответ на Re: NULL safe equality operator  (Michael Glaesemann <grzm@myrealbox.com>)
Ответы Re: NULL safe equality operator  (Michael Glaesemann <grzm@myrealbox.com>)
Список pgsql-hackers
>     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

Chris



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

Предыдущее
От: Qingqing Zhou
Дата:
Сообщение: Re: gprof SELECT COUNT(*) results
Следующее
От: Michael Glaesemann
Дата:
Сообщение: Re: NULL safe equality operator