About 5,340 results
Open links in new tab
  1. SQL Server COALESCE () Function - W3Schools

    Definition and Usage The COALESCE () function returns the first non-null value in a list. Syntax COALESCE (val1, val2, ...., val_n)

  2. How to Use the COALESCE() Function in SQL - LearnSQL.com

    May 24, 2022 · In this article, we demonstrated several ways to use the SQL COALESCE() function. We covered how to use COALESCE() to replace NULL values, how to compute an alternative value, and …

  3. COALESCE (Transact-SQL) - SQL Server | Microsoft Learn

    Nov 18, 2025 · Transact-SQL reference for COALESCE, which returns the value of the first expression that doesn't evaluate to NULL.

  4. SQL Server COALESCE() Function - GeeksforGeeks

    Jul 23, 2025 · The COALESCE() function in SQL Server is a powerful tool designed to handle NULL values effectively. It evaluates a list of expressions in a specified order and returns the first non-null …

  5. How to Use the COALESCE() Function in SQL (With Examples)

    Mar 27, 2025 · Whether you’re cleaning datasets or merging columns, SQL offers a simple yet powerful solution: the COALESCE() function. This tutorial will show you how COALESCE() works, when to …

  6. SQL COALESCE Function

    In this tutorial, you'll learn how to use the SQL COALESCE () function to query and calculate values and NULL effectively.

  7. SQL Coalesce Function Examples and Use Cases

    Feb 5, 2025 · This tip explores how to handle NULL values in SQL Server using the COALESCE () function using various queries and reviewing the results. Developers should code to handle NULL …

  8. Oracle COALESCE Function

    This tutorial shows you how to use the Oracle COALESCE () function to return the first non-null arguments in a list of arguments

  9. COALESCE - Oracle Help Center

    COALESCE returns the first non-null expr in the expression list. You must specify at least two expressions. If all occurrences of expr evaluate to null, then the function returns null. Oracle …

  10. SQL COALESCE Explained: Handle NULL Values Like a Pro

    Learn how SQL COALESCE works with practical examples. Handle NULL values, set defaults, and master COALESCE vs ISNULL vs IFNULL across all databases.