I have a sql statement where I check a column to make sure the word 'call' is not there like this:
select * from TableName where PFSeat <> 'call'
But this statement will not include records where PFSeat is Null. In order to get all the records I need I have to change the statement to look like this
select * from TableName where (PFSeat <> 'call' OR PFSeat Is Null)
Is there a reason why it is coded to where I dont get all the records I need from the first statement? What is the reason?