In SQL, what is the use of IS NULL operator? code example
Example: 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;
Tests for empty (NULL) values.
Example: Returns users that haven’t given a contact number.
SELECT * FROM users
WHERE contact_number IS NULL;