show/hide this revision's text 2 added 254 characters in body

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

show/hide this revision's text 1

Hmmm, because 3 is not among the values 1, 2, null ???