Re: [SQL] unmatched

From: José Soares <jose(at)sferacarta(dot)com>
To: "Brett W(dot) McCoy" <bmccoy(at)lan2wan(dot)com>
Cc: pgsql-sql(at)postgresql(dot)org
Subject: Re: [SQL] unmatched
Date: 1999-06-11 15:49:36
Message-ID: 37613010.5EBF725C@sferacarta.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

prova=> select * from prova1;
a1
-----
delta
alpha
gamma
(3 rows)

prova=> select * from prova2;
a2
-----
delta
gamma
(2 rows)

prova=> select * from prova1 where a1 not in (select * from prova2);
a1
-----
alpha
(1 row)

"Brett W. McCoy" ha scritto:

> I seem to have a serious brain fart going here. I have two tables, and
> I want to find out which rows that are in the first do not have a match
> in the second. If I could create an explicit left join, I could do it by
> finding the rows in the second column that are NULL. Here's what I kinda
> have, but itjust sits there and never returns anything:
>
> select count(*) from apdf
> where apdf.doc_index != ondisk.doc_index;
>
> I tried the NOT IN operator (!!=), but it didn't like that at all. Is !=
> a valid operator?
>
> Brett W. McCoy
> http://www.lan2wan.com/~bmccoy
> -----------------------------------------------------------------------
> "Biology is the only science in which multiplication means the same
> thing as division."

______________________________________________________________
PostgreSQL 6.5.0 on i586-pc-linux-gnu, compiled by gcc 2.7.2.3
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Jose'

In response to

  • unmatched at 1999-06-11 00:08:20 from Brett W. McCoy

Browse pgsql-sql by date

  From Date Subject
Next Message ZioBudda 1999-06-11 15:57:06 nodeREAD error
Previous Message Jan Wieck 1999-06-11 09:58:16 Re: [ADMIN] Apache authentication & PostgreSQL