According to your suggestion, whereit compares null != 'Iron', which calculates the UNKNOWN value, which is neither true nor false, based on SQL 3 logic. Therefore, the request is not returned.
If you need a string nullto be cast, you should use
where content !='Iron' or content is null
source
share