Curriculum
Course: SQL
Login

Curriculum

SQL

SQL References

0/80

MySQL Functions

0/139

SQL Server Functions

0/84

SQL Quick Ref

0/1
Text lesson

COALESCE

Example

Return the initial non-null value from a list.

SELECT COALESCE(NULLNULLNULL‘W3Schools.com’NULL‘Example.com’);

Definition and Usage

The COALESCE() function retrieves the first non-null value from a list of arguments.

Syntax

COALESCE(val1val2….val_n)

Parameter Values

Parameter

Description

val1, val2, val_n

Required. The values to evaluate

Technical Details

Works in:

 From MySQL version 4.0

More Examples

Example

Retrieve the initial non-null value from a list.

SELECT COALESCE(NULL12‘W3Schools.com’);