Hey guys,
I'm doing a pretty basic query that
Selects about 5 fields
From Table1
Where
(value=0 AND name <> HOT)
OR
(value=Null AND name <>HOT)
I also have some records (4 specifically) that have a name = nullvalue. When I run this query it picks out all the records with a name, and skips HOT(which is correct), but skips the nulls which I also want to include. Can someone help me in finding the reason for this error?
I'm doing a pretty basic query that
Selects about 5 fields
From Table1
Where
(value=0 AND name <> HOT)
OR
(value=Null AND name <>HOT)
I also have some records (4 specifically) that have a name = nullvalue. When I run this query it picks out all the records with a name, and skips HOT(which is correct), but skips the nulls which I also want to include. Can someone help me in finding the reason for this error?