I would like to know how to use NULL and an empty string at the same time in a WHERE clause in SQL Server. I need to find records that have either null values o
WHERE
You could use isnull function to get both null and empty values of a text field:
null
SELECT * FROM myTable WHERE isnull(my_nullable_text_field,'') = ''