On Sun, Jun 26, 2005 at 15:42:25 -0500,
Peter Fein <pfein@pobox.com> wrote:
>
> Is there anyway to create an infix version of this? I'd really like be
> able to write (where a..d are some boolean conditions):
Use <>:
area=> select true <> false <> true;
?column?
----------
f
(1 row)
area=> select false <> true <> false;
?column?
----------
t
(1 row)