About 264,000 results
Open links in new tab
  1. Oracle NVL Function

    This tutorial shows you how to use the Oracle NVL () function to substitute null with a more meaningful alternative.

  2. NVL - Oracle Help Center

    If expr1 is numeric, then Oracle Database determines which argument has the highest numeric precedence, implicitly converts the other argument to that data type, and returns that data type.

  3. SQL ISNULL (), NVL (), IFNULL () and COALESCE () Functions

    Well organized and easy to understand Web building tutorials with lots of examples of how to use HTML, CSS, JavaScript, SQL, Python, PHP, Bootstrap, Java, XML and more.

  4. Oracle / PLSQL: NVL Function - TechOnTheNet

    This Oracle tutorial explains how to use the Oracle / PLSQL NVL function with syntax and examples. The Oracle / PLSQL NVL function lets you substitute a value when a null value is encountered.

  5. NVL function in Oracle - W3schools

    NVL function in Oracle NVL is an advanced function that the Oracle database supports. It is used to substitute a value, when a NULL value is encountered. The NVL function is supported in the various …

  6. Oracle Tutorial: NVL function explained with examples

    In this Oracle Tutorial we will learn about NVL function with examples. NVL stands for Null Value.

  7. NULL-Related Functions - ORACLE-BASE

    The NVL function allows you to replace null values with a default value. If the value in the first parameter is null, the function returns the value in the second parameter.

  8. SQL NVL () Explained - Database.Guide

    Jun 8, 2022 · With this syntax, we can provide any number of arguments, and NVL() will return the first non-NULL value. This syntax makes NVL() a synonym for COALESCE() (which returns the first non …

  9. Using Oracle‘s NVL Function: A Master Guide to Handling NULLs

    Dec 27, 2023 · Thankfully, Oracle provides a simple yet powerful function to substitute NULLs – NVL. In this comprehensive guide, you‘ll unlock the full potential of NVL to easily replace NULL values in …

  10. Oracle NVL function • Vinish.Dev

    Nov 7, 2025 · Learn the Oracle NVL function. This simple SQL guide explains how to replace NULL values with a default value, with easy-to-follow examples.