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

Retrieve the initial non-null value from a set of options.

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

Definition and Usage

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

Syntax

COALESCE(val1val2….val_n)

Parameter Values

Parameter

Description

val1, val2, val_n

Mandatory. The list of values to evaluate for the first non-null occurrence.

Technical Details

Works in:

 SQL Server (from 2008 onward), Azure SQL Database, Azure SQL Data Warehouse, and Parallel Data Warehouse

More Examples

Example

Retrieve the initial non-null value from a series of options.

SELECT COALESCE(NULL12‘W3Schools.com’);