Re: [HACKERS] Subselects and NOTs - Mailing list pgsql-hackers

From Zeugswetter Andreas SARZ
Subject Re: [HACKERS] Subselects and NOTs
Date
Msg-id 219F68D65015D011A8E000006F8590C6010A51E1@sdexcsrv1.sd.spardat.at
Whole thread Raw
List pgsql-hackers
This is what I did:
    create table a (a int, a1 char(8));
    create table b (b int);
    insert into a values (1, 'one');
    insert into a values (NULL, 'null');

and this is what I got from Informix:
> select * from a where a not in (select * from b);
          a a1
          1 one
            null
2 row(s) retrieved.
>  select * from a where not (a in (select * from b));
          a a1
          1 one
            null
2 row(s) retrieved.
> select * from a where not a in (select * from b);
          a a1
          1 one
            null
2 row(s) retrieved.
> select * from a where a<>(select * from b);
          a a1
No rows found.
> select * from a where a=(select * from b);
          a a1
No rows found.

Andreas

pgsql-hackers by date:

Previous
From: Mattias Kregert
Date:
Subject: Re: AW: [HACKERS] Re: Subselects open issue Nr. NEW
Next
From: The Hermit Hacker
Date:
Subject: Re: [HACKERS] Open 6.3 issues (fwd)