Answers for "how select a record if sql cell is not null"

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

find value if not null in sql

SELECT FIRST_NAME , MANAGER_ID 
FROM EMPLOYEES 
WHERE MANAGER_ID IS NOT NULL ;
Posted by: Guest on January-28-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language