Como verificar se uma linha é nula em SQL
--Checks both null and empty
SELECT *
FROM T
WHERE NULLIF(some_col, ' ') IS NULL;
Delta Sierra
--Checks both null and empty
SELECT *
FROM T
WHERE NULLIF(some_col, ' ') IS NULL;