Now I know you can't directly compare NULL to anything (as null is unknown) so how would I achieve the following:
select *
from Material as m
where MtrlCode = 826 and
Exposlimit <> 'compareMe'
Where Exposlimit MAY be NULL or it may not be. 'compareMe' may also be NULL.
Therefore how do I compare the two? Both sides could be either text or NULL.