Answers for "how select a record if sql cell is not null and 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 if empty then

SELECT COALESCE(NULLIF(SomeColumn,''), ReplacementColumn)
FROM SomeTable
Posted by: Guest on March-03-2021

Code answers related to "how select a record if sql cell is not null and empty"

Code answers related to "SQL"

Browse Popular Code Answers by Language