Re: [HACKERS] Subselects and NOTs

Поиск
Список
Период
Сортировка
От Zeugswetter Andreas SARZ
Тема Re: [HACKERS] Subselects and NOTs
Дата
Msg-id 219F68D65015D011A8E000006F8590C6010A51E1@sdexcsrv1.sd.spardat.at
обсуждение исходный текст
Список 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 по дате отправления:

Предыдущее
От: Mattias Kregert
Дата:
Сообщение: Re: AW: [HACKERS] Re: Subselects open issue Nr. NEW
Следующее
От: The Hermit Hacker
Дата:
Сообщение: Re: [HACKERS] Open 6.3 issues (fwd)