Forum Replies Created

Viewing 2 posts - 1 through 2 (of 2 total)

  • RE: null in IN clause

    Thanks a lot for clearing all my doubts.

    😀

  • RE: null in IN clause

    In the case of NOT in,

    SELECT n FROM Nums WHERE n NOT IN (1, 2, null)

    equates to

    WHERE n != 1 AND n !=2 and n!=null

    The 3rd returns null...

Viewing 2 posts - 1 through 2 (of 2 total)