• S_Kumar_S (9/24/2012)

    I logically expect NULL records to be returned here, but they are not. ... Is there some setting which impacts this behavior?

    Yes there is a setting, but you should be extremely cautious about using it:

    SET ANSI_NULLS OFF

    create table a(id int, nm varchar(200))

    insert into a

    select 1,'a'

    insert into a

    select 1,NULL

    select * from a where nm not in('a')

    SQL DBA,SQL Server MVP(07, 08, 09) A socialist is someone who will give you the shirt off *someone else's* back.