NVL

NVL

The NVL function substitutes an alternate value for a NULL value.

Syntax

NVL( Arg1, replace_with )
Both the parameters are mandatory. Note that NVL function works with all types of data types. And also that the data type of original string and the replacement must be in compatible state i.e. either same or implicitly convertible by Oracle.
The SELECT statement below will display 'n/a' if an employee has been not assigned to any job yet i.e. JOB_ID is NULL. Otherwise, it would display the actual JOB_ID value.
SELECT  first_name, NVL(JOB_ID, 'n/a')
FROM employees;
Read more: Conv. Func.

Follow CodeGalaxy

Mobile Beta

Get it on Google Play
Send Feedback
Keep exploring
SQL snippets
Cosmo
Sign Up Now
or Subscribe for future quizzes