mysql only get null values code example
Example 1: mysql where value is null
SELECT *
FROM contacts
WHERE last_name IS NULL;
Example 2: if column value is null then in mysql
SELECT
contactname, IFNULL(bizphone, homephone) phone
FROM
contacts;