# COALESCE

Given a list of values, returns the first non-NULL value.

## Syntax

```
COALESCE ( val, [val, [val ...]])

```

## Arguments

* val: any object

## Return Type

Return the first non-NULL value in the list. Returns NULL if all values are NULL.

## Examples

```sql
SELECT COALESCE(NULL, NULL, 1, 2, 3);

```

```output

+-------------------------------+
| COALESCE(NULL, NULL, 1, 2, 3) |
+-------------------------------+
|                             1 |
+-------------------------------+

```

***

Modified at: February 24, 2023

Source: [/db/v9.1/reference/sql-reference/conditional-functions/coalesce/](https://docs.singlestore.com/db/v9.1/reference/sql-reference/conditional-functions/coalesce/)

(An index of the documentation is available at /llms.txt)
