And how many of these lines are MY_FIELDset to NULL?
a. select count(*) from mytable;
b. select count(*) from mytable where my_field is null;
c. select count(*) from mytable where my_field is not null;
d. select count(*) from mytable where my_field = 'some value';
e. select count(*) from mytable where my_field != 'some value';
NULLnot equal to or not equal to any value, including NULL, so I would expect it to be d+eequated to cand b+cfor designation a.