ItSolutionStuff.com

How to Check Empty or Null Data using MySQL Query?

By Hardik Savani β€’ January 27, 2023
PHP MySql

If you want to check empty or null value with conditional statement like case when and if in table row with Mysql database. you like to check empty or null value form table then you have multiple way check that. first we check empty value with case when statement then following example.

Empty Check:

SELECT

(CASE WHEN COALESCE(email,'')!='' THEN email ELSE 'example@gmail.com' END) as test

FROM `customers`

---------------------OR----------------------

SELECT

(CASE COALESCE(email,'') WHEN '' THEN 'example@gmail.com' ELSE email END) as test

FROM `customers`

---------------------OR----------------------

SELECT

(IF(COALESCE(email,'')!='',email,'example@gmail.com')) as exp

FROM `customers`

Null Check:

SELECT

(CASE WHEN email IS NULL THEN 'example@gmail.com' ELSE email END) as test

FROM `customers`

---------------------OR----------------------

SELECT

(IF(email IS NULL,'example@gmail.com',email)) as exp

FROM `customers`

Tags: MySql
Hardik Savani

Hardik Savani

I'm a full-stack developer, entrepreneur, and founder of ItSolutionStuff.com. Passionate about PHP, Laravel, JavaScript, and helping developers grow.

πŸ“Ί Subscribe on YouTube

We Are Recommending You

β˜…

How to Install MySQL in Ubuntu Server?

Read Now β†’
β˜…

Node JS CRUD with MySQL Tutorial Example

Read Now β†’
β˜…

How to Create a REST API using Node.js and MySQL?

Read Now β†’
β˜…

How to add 1 day to the date column in MySQL?

Read Now β†’
β˜…

MYSQL Query for Data between Two Dates Example

Read Now β†’
β˜…

How to Use MySQL View in Laravel?

Read Now β†’
β˜…

How to Get Last Record in Codeigniter?

Read Now β†’
β˜…

How to Execute MySQL Query in Laravel?

Read Now β†’
β˜…

How to fetch this week records in MySql ?

Read Now β†’
β˜…

How to Copy One Table Data into Another Table using MySQL?

Read Now β†’
β˜…

How to count unique domains from email address field in MySQL ?

Read Now β†’
β˜…

Which MySQL Datatype use for Store an IP Address?

Read Now β†’
β˜…

Mysql Hexadecimal Color Code Store in Binary Datatype Example

Read Now β†’