Concept Flow - Why equals NULL fails
Start Query
Check condition: column = NULL
Result is UNKNOWN, not TRUE
Row excluded from result
Query returns no rows matching NULL
Use IS NULL instead for NULL check
SQL treats NULL as unknown, so comparing with = NULL returns unknown, not true, causing rows to be excluded.