Is it true that the implementation of the comparison is different in these subd? For example, for oracle be fair:
create table test_ak ( f1 number); insert into test_ak values (1); insert into test_ak values (null); select count(*) from test_ak where f1 != 1; COUNT(*) -------- 0 Is it fair for MS SQL server?