Re: Weird NOT IN effect with NULL values

Поиск
Список
Период
Сортировка
Искать
От
Josh Berkus
Тема
Re: Weird NOT IN effect with NULL values
Дата
Msg-id
3A9E95A7.63FE080D@agliodbs.com
Список
Дерево обсуждения
Re: Weird NOT IN effect with NULL values Ken Kline <ken@oldbs.com>
Mr. Joerdens,

> I get no rows if the result column returned by the subselect
> contains NULL values. It works as expected if I remove the NULL values
> from the result set. Is this behaviour correct and if so, why?

I can see how that bug would happen.  You may want to forward your
e-mail to pgsql-bugs.

Regardless, you'll find that you get faster results (as well as avoiding
the NULL bug) if you use the following form of the query:

SELECT name
FROM customer
WHERE NOT EXISTS (
SELECT customer_id
FROM salesorder
WHERE customer_id = customer.customer_id
);

Bruce, you may want to consider editing your next edition to include the
above modification.  WHERE ... NOT IN is a bad idea for any subselect on
medium-large tables.

-Josh Berkus


-- 
______AGLIO DATABASE SOLUTIONS___________________________                                       Josh Berkus  Complete information technology      josh@agliodbs.com   and data management solutions       (415) 565-7293  for law firms, small businesses       fax  621-2533   and non-profit organizations.       San Francisco

В списке pgsql-sql по дате отправления
От: Frank Joerdens
Дата:
От: Bruce Momjian
Дата:
FAQ