Re: varchar value comparisons not working?

From: Jasen Betts <jasen(at)xnet(dot)co(dot)nz>
To: pgsql-sql(at)postgresql(dot)org
Subject: Re: varchar value comparisons not working?
Date: 2009-04-27 08:53:49
Message-ID: gt3rqt$f6m$2@reversiblemaps.ath.cx
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

On 2009-04-24, Shawn Tayler <stayler(at)washoecounty(dot)us> wrote:
> Hello,
>
> I'm doing a quick comparison between a couple tables, trying to cleanup
> some inconsistencies, and what should be a simple check between 2 tables
> doesn't seem to be working. psql is 8.3.7 and server is 8.2.13.
>
> I run the following:
>
> select sfd.lid as sflid,sd.lid as slid,sfd.serial from sfd,shawns_data
> sd where sfd.serial = sd.serial_number order by sfd.lid;
>
> the lid columns in both tables should be identical, but as you see in
> this sample, they do differ:
>
> sflid | slid | serial
> -------+-------+----------
> 14056 | 14056 | 9614583
> 14057 | | 9614984
> 14058 | 14058 | 9614737
> 14059 | 14059 | 9614579
> 14060 | | 9614827
> 14061 | 14061 | 9614726
> 14062 | 14062 | 9614966
> 14063 | 14063 | 9615079
>
> So running this query:
>
> select count(*) from sfd,shawns_data sd where sfd.serial = sd.serial_number and sfd.lid != sd.lid;
>
> I should show some rows that do not match, at least 2 (there are more than shown).
>
> But instead I get this:
>
> count
> -------
> 0
> (1 row)
>
>
> What am I doing wrong?

expecting NULL values not-equal something.

select count(*)
from sfd,shawns_data sd
where sfd.serial = sd.serial_number
and COALESCE( sfd.lid != sd.lid, TRUE )

the above include rows where both are NULL, if that's undesirable
they must be explicitly excluded.

In response to

Browse pgsql-sql by date

  From Date Subject
Next Message Mario Splivalo 2009-04-27 11:40:59 Re: Query with Parameters and Wildcards
Previous Message Jasen Betts 2009-04-27 08:48:26 Re: Multiple return values and assignment