Re: select * from users where user_id NOT in (select

From: "Alexander Farber" <alexander(dot)farber(at)gmail(dot)com>
To: pgsql-general(at)postgresql(dot)org
Subject: Re: select * from users where user_id NOT in (select
Date: 2006-08-18 08:00:20
Message-ID: 943abd910608180100l3db08f1cta0516abba1e75103@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Hello,

thank you and sorry for asking a FAQ.
I've fixed my problem now by:

select user_id, username from phpbb_users where user_id not in
(select ban_userid from phpbb_banlist where ban_userid is not null);

but still your explanation feels illogical
to me even though I know you're right...

On 8/18/06, Stephan Szabo <sszabo(at)megazone(dot)bigpanda(dot)com> wrote:
> When the subselect returns
> NULL for at least one row, you fall into this sort of case.
>
> x NOT IN (...) is equivalent to NOT(x IN (...)) which is
> NOT(x = ANY (...))
>
> x = ANY (...) is basically defined as
> True if x = y is true for some y in the subselect
> False if x = y is false for all y in the subselect
> Unknown otherwise
>
> Since x = NULL is unknown and not true or false, you fall into the last
> case with your query and data.
>

Regards
Alex

--
http://preferans.de

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Harald Fuchs 2006-08-18 09:41:34 Re: Dynamic partial index
Previous Message macieh 2006-08-18 07:25:31 External variable