Learn DBMS and MySQL

Our tutorial provides basic and advance concepts of database management and MySQL commands with detailed examples

DBMS Introduction
MySQL Database
MySQL Tables
MySQL Queries
MySQL Clauses
MySQL Conditions
MySQL Keys

MySQL IS NULL

MySQL IS NULL condition is used to check if there is a NULL value in the expression. It is used with SELECT, INSERT, UPDATE and DELETE statement.

Syntax: expression IS NULL

It specifies a value to test if it is NULL value.

Let us consider table citizen with this data

select * from citizen where city IS NULL;

Let's move on to use of IS NOT NULL in MySQL


Share this page on :