Answers for "get null data in sql"

SQL
5

sql is null

Tests for empty (NULL) values.
Example: Returns users that haven’t given a contact number.
SELECT * FROM users
WHERE contact_number IS NULL;
Posted by: Guest on January-07-2021
0

get null data in sql

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

Code answers related to "SQL"

Browse Popular Code Answers by Language