A field with a NULL value is a field with no value.
If a field in a table is optional, it is possible to insert a new record or update a record without adding a value to this field. Then, the field will be saved with a NULL value.
We use the IS NULL and IS NOT NULL operators.
SELECT * FROM table_name WHERE column_name IS NULL; Edit the code below and click Run to see the result live.