Re: exclusive OR possible within a where clause? - Mailing list pgsql-general

From David Fetter
Subject Re: exclusive OR possible within a where clause?
Date
Msg-id 20111014165837.GB32530@fetter.org
Whole thread Raw
In response to Re: exclusive OR possible within a where clause?  (Tom Lane <tgl@sss.pgh.pa.us>)
Responses Re: exclusive OR possible within a where clause?  (David Salisbury <salisbury@globe.gov>)
List pgsql-general
On Thu, Oct 13, 2011 at 07:49:59PM -0400, Tom Lane wrote:
> David Salisbury <salisbury@globe.gov> writes:
> > Short version, is there a way to implement an exclusive OR in a where clause?
>
> The boolean <> operator will do the trick.
>
>     (x = y) <> (a = b)
>
>             regards, tom lane

Factoring in NULLable columns, that's:

(x IS NOT DISTINCT FROM y) <> (a IS NOT DISTINCT FROM b)

Cheers,
David.
--
David Fetter <david@fetter.org> http://fetter.org/
Phone: +1 415 235 3778  AIM: dfetter666  Yahoo!: dfetter
Skype: davidfetter      XMPP: david.fetter@gmail.com
iCal: webcal://www.tripit.com/feed/ical/people/david74/tripit.ics

Remember to vote!
Consider donating to Postgres: http://www.postgresql.org/about/donate

pgsql-general by date:

Previous
From: Julien Rouhaud
Date:
Subject: Re: Confused About pg_* Tables
Next
From: Julien Rouhaud
Date:
Subject: Re: Confused About pg_* Tables