Re: [INTERFACES] selectecting not null varchars.

Поиск
Список
Период
Сортировка
От Ed Loehr
Тема Re: [INTERFACES] selectecting not null varchars.
Дата
Msg-id 38B58ED8.FDE3E3C7@austin.rr.com
обсуждение исходный текст
Ответ на selectecting not null varchars.  (Joseph Shraibman <jks@p1.selectacast.net>)
Ответы Re: [INTERFACES] selectecting not null varchars.  ("Ross J. Reedstrom" <reedstrm@wallace.ece.rice.edu>)
Список pgsql-interfaces
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


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

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