Re: [INTERFACES] selectecting not null varchars.

Поиск
Список
Период
Сортировка
От Mike Mascari
Тема Re: [INTERFACES] selectecting not null varchars.
Дата
Msg-id 38B55346.9156B92D@mascari.com
обсуждение исходный текст
Ответ на selectecting not null varchars.  (Joseph Shraibman <jks@p1.selectacast.net>)
Список pgsql-interfaces
Ed Loehr wrote:
> 
> Joseph Shraibman wrote:
> >
> >  select * from directory where h != null  ;
> > ... gets you this:
> > ERROR:  parser: parse error at or near ";"
> 
> Postgresql's SQL "not equal" operator is "<>"...Try this:
> 
>         select * from directory where h <> null;
> 
> Cheers,
> Ed Loehr
> 

Does that work? I remember when the equality with NULL was added
because of non-compliant queries being generated from Access. I
didn't know inequality was implemented as well. Formal SQL is:

SELECT * FROM directory WHERE h IS NOT NULL;

Mike Mascari


В списке pgsql-interfaces по дате отправления:

Предыдущее
От: "Ross J. Reedstrom"
Дата:
Сообщение: Re: [INTERFACES] selectecting not null varchars.
Следующее
От: Joseph Shraibman
Дата:
Сообщение: Re: [INTERFACES] selectecting not null varchars.