Comment vérifier si une ligne est nul dans SQL

--Checks both null and empty

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