Ok, so I have an issue.
There is a table that has a status field on it.
When I query that status field for a particular code, it returns all the records with that status code and some null records as well.
My SQL is a simple as this though:
SELECT Status_Code, Object
FROM TABLE
WHERE Status_Code = "M";
I still get some records that have a status_code of NULL.
Also, in the results window, this column is yellow, while the others are white.
It is SQL 2005 Enterprise.
Any ideas?