WHERE clause with the IS NULL operator
WHERE expression IS [NOT] NULL
SELECT orderID, orderDate, shipDate
FROM orders;
SELECT orderID, orderDate, shipDate
FROM orders
WHERE shipDate IS NULL;
SELECT orderID, orderDate, shipDate
FROM orders
WHERE shipDate IS NOT NULL;
NULL values in a column, you can use the IS NULL operator to select rows that have or don’t have NULL values in that column.