Answers for "how to check if a row is null in sqll"

SQL
2

how to check if a row is null in sql

--Checks both null and empty

SELECT * 
  FROM T
 WHERE NULLIF(some_col, ' ') IS NULL;
Posted by: Guest on October-06-2021

Code answers related to "how to check if a row is null in sqll"

Code answers related to "SQL"

Browse Popular Code Answers by Language