Cara Memeriksa Jika Baris Null di SQL

--Checks both null and empty

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