Top
Symfoware Server V12.1.0 Application Development Guide
FUJITSU Software

9.4.3 NVL

Features

Converts NULL values.

Specification format

General rules

Example

In the following example, "IS NULL" is displayed if the value of col1 in table t1 is a NULL value.

SELECT col2, NVL(col1,'IS NULL') "nvl" FROM t1;
 col2 |   nvl
------+---------
 aaa  | IS NULL
(1 row)