Re: select where not in () fails

Поиск
Список
Период
Сортировка
От Gary Stainburn
Тема Re: select where not in () fails
Дата
Msg-id 201809211620.16084.gary.stainburn@ringways.co.uk
обсуждение исходный текст
Ответ на Re: select where not in () fails  (Pavel Stehule <pavel.stehule@gmail.com>)
Ответы Re: select where not in () fails  (Pavel Stehule <pavel.stehule@gmail.com>)
Re: select where not in () fails  (Andrew Gierth <andrew@tao11.riddles.org.uk>)
Список pgsql-sql
On Friday 21 September 2018 16:11:17 Pavel Stehule wrote:
>  maybe some value emp_u_id from employees is NULL. It is expected behave
>
> http://blog.9minutesnooze.com/sql-not-in-subquery-null/
>
> Regards
>
> Pavel


Thanks for this. 

As I said in my description, some values will be NULL. I just thought that 
these would not be included in the select. I did not think that it would stop 
the subselect from working

users=# select count(u_id) from users where u_id not in (select distinct 
emp_u_id from employees where emp_u_id is not null);
 count 
-------
   393
(1 row)

users=# 


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

Предыдущее
От: Pavel Stehule
Дата:
Сообщение: Re: select where not in () fails
Следующее
От: Pavel Stehule
Дата:
Сообщение: Re: select where not in () fails