Answers for "sql select row if there is a null value"

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 "sql select row if there is a null value"

Code answers related to "SQL"

Browse Popular Code Answers by Language