I have a sql server database that I am querying and I want to get information only if a specific row is zero. I used the where statement, for example:
WHERE database.foobar = NULL
and returns nothing. However, I know that there is at least one result, because I created an instance in the database where foobar is zero. If I select the where statement, it will display the data, so I know this is not the rest of the query.
can someone help me
source share