MySQL COALESCE() Function Examples

Let’s look at some examples of the COALESCE() function in MySQL and understand how to use COALESCE function.

Using COALESCE() function on a list example

In this example, we will use the COALESCE function on a list of values where the first value is NULL.

Query:

SELECT COALESCE(NULL, 'A', 'B', NULL); 

Output:

A 

Example 2

In this example, we will use the COALESCE function on a list of values where the first value is not NULL

Query

SELECT COALESCE('A', NULL, 'B', NULL); 

Output:

A 

MySQL COALESCE() Function

The MySQL COALESCE() function returns the first non-null value in a list of expressions.

Similar Reads

COALESCE function in MySQL

The COALESCE function in MySQL is used to get the first non-null value from a list of expressions....

Syntax

The MySQL COALESCE function syntax is:...

MySQL COALESCE() Function Examples

Let’s look at some examples of the COALESCE() function in MySQL and understand how to use COALESCE function....

Important Points About MySQL COALESCE() Function

MySQL COALESCE() function is used to return the first non-NULL value from a list of expressions. If all the expressions evaluate to NULL, the COALESCE() function will return NULL. COALESCE() can be used to substitute NULL values in table columns with a default value or an expression. COALESCE() is more flexible than IFNULL() as it can handle any number of arguments, while IFNULL() only takes two arguments....

Contact Us