Hmmm
Compare to null is undefined, because unless you use IS NULL.
So, when comparing 3 is to NULL (query A), it returns undefined.
I.e. SELECT 'true' where 3 in (1,2,null) and SELECT 'true' where 3 not among in (1,2,null)
will produce the values 1same result, 2as NOT (UNDEFINED) is still undefined, null ???but not TRUE
