FW: Retrieving NULL records - Mailing list pgsql-novice

From Mel Jamero
Subject FW: Retrieving NULL records
Date
Msg-id 000801c355c3$fffc62e0$1b06a8c0@CMPMEL
Whole thread Raw
List pgsql-novice

oooopps sorry, i misunderstood.  it's a logical error, not a syntax error.
just like in some programming languages.

-----Original Message-----
From: pgsql-novice-owner@postgresql.org
[mailto:pgsql-novice-owner@postgresql.org]On Behalf Of
email@juergen-cappel.de
Sent: Tuesday, July 29, 2003 2:40 PM
To: pgsql-novice@postgresql.org
Subject: Re: [NOVICE] Retrieving NULL records



Shouldn't  = NULL  be considered a syntax error ?


Tom Lane <tgl@sss.pgh.pa.us> schrieb am 29.07.2003, 07:41:15:
> "psql novice"  writes:
> > stock=> select * from stock where qty = NULL;
>
> The correct incantation is
>
>  select * from stock where qty IS NULL;
>
> Ordinary comparisons involving NULL always fail (or more accurately,
> return NULL).  You have to use the special "is null" operator instead.
>
>             regards, tom lane
>
> ---------------------------(end of broadcast)---------------------------
> TIP 6: Have you searched our list archives?
>
>                http://archives.postgresql.org

---------------------------(end of broadcast)---------------------------
TIP 1: subscribe and unsubscribe commands go to majordomo@postgresql.org


pgsql-novice by date:

Previous
From: "Mel Jamero"
Date:
Subject: Re: Retrieving NULL records
Next
From: Nabil Sayegh
Date:
Subject: Re: Retrieving NULL records