Answers for "sql check if row is null or empty"

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
0

sql check for null and empty string

IF ISNULL(@param) OR @param = '' THEN doSomething...
Posted by: Guest on August-19-2020

Code answers related to "sql check if row is null or empty"

Code answers related to "SQL"

Browse Popular Code Answers by Language