About 106,000 results
Open links in new tab
  1. SQL ISNULL (), NVL (), IFNULL () and COALESCE () Functions

    SQL Server The SQL Server ISNULL() function lets you return an alternative value when an expression is NULL:

  2. Oracle NVL () Function

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

  3. NVL - Oracle Help Center

    Appendix C in Oracle Database Globalization Support Guide for the collation derivation rules, which define the collation assigned to the return value of NVL when it is a character value

  4. 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 …

  5. 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.

  6. SQL General Functions - GeeksforGeeks

    Aug 8, 2024 · SQL general functions are built-in functions provided by SQL databases to perform various operations on data. These functions are categorized into several types based on their …

  7. Understanding NVL, NVL2, COALESCE, and NULLIF in SQL

    Dec 9, 2024 · Handling NULL values effectively is a common challenge in SQL. Functions like NVL, NVL2, COALESCE, and NULLIF offer powerful ways to manage NULL values and conditionally …

  8. SQL NVL - Syntax, Use Cases, and Examples | Hightouch

    NVL stands for "null value logic" and is used primarily to provide more meaningful data when NULL values are encountered in query results. You would use the SQL NVL function when you want to …

  9. NVL in SQL: Understanding the NVL Function in SQL - Simplilearn

    May 3, 2025 · The NVL function in SQL replaces NULL values with a default. Learn how to use it, understand the syntax, and see how it compares to COALESCE for SQL queries.

  10. NVL Function in SQL: How to Use NVL for Null Value Handling in SQL ...

    NVL helps you avoid NULL values in query results by replacing them with alternative values, such as zero, an empty string, or any other meaningful default. The basic syntax of the NVL function is: sql. …