Re: [SQL] Finding the negative - Mailing list pgsql-sql

From Tom Lane
Subject Re: [SQL] Finding the negative
Date
Msg-id 26802.1499370203@sss.pgh.pa.us
Whole thread Raw
In response to [SQL] Finding the negative  (Ed Rouse <erouse@milner.com>)
List pgsql-sql
Ed Rouse <erouse@milner.com> writes:
> ... What I need is to find the ones NOT in either table. I have tried using not in both with or/and  and various
parenthesis.I tried: 

> select count(distinct(loid)) from pg_largeobject where not ((loid in (select content from attachments) or loid in
(selectcontent from idw_form_workflow_attachments))); 

> This should work since, if the loid is not in the content of either table, it should be F or F = F, negated to T;
> which I would think would then count, but I get back 0 instead of the rather large number I should get.

I'm suspicious that this means there's at least one NULL in those content
columns.  That will cause the IN check to return either TRUE or NULL, not
FALSE.  You could recast to use EXISTS, or explicitly exclude nulls while
selecting from the attachments tables.
        regards, tom lane



pgsql-sql by date:

Previous
From: Vincent Elschot
Date:
Subject: Re: [SQL] Finding the negative
Next
From:
Date:
Subject: [SQL] Function with table Valued Parameters execution issue