So überprüfen Sie, ob eine Zeile in SQL null ist

--Checks both null and empty

SELECT * 
  FROM T
 WHERE NULLIF(some_col, ' ') IS NULL;
Delta Sierra