About 2,080 results
Open links in new tab
  1. 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.

  2. 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)

  3. SQL Coalesce Function Examples and Use Cases - SQL Server Tips

    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 …

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

  5. SQL Server COALESCE() Function - GeeksforGeeks

    Jul 23, 2025 · The COALESCE () function in SQL Server is used to handle NULL values effectively by replacing them with user-defined values during expression evaluation. All expressions within the …

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

    Mar 27, 2025 · Learn how to use the SQL COALESCE () function to handle null values, combine columns, and clean up your data with real-world examples and tips.

  7. COALESCE Function in SQL Server | Handle NULL Values with Examples

    Jan 11, 2026 · Learn the COALESCE function in SQL Server with simple examples. Understand NULL handling, syntax, calculations, WHERE usage, best practices, and interview MCQs.

  8. SQL COALESCE Function - Tutorial Gateway

    It is common to encounter missing (NULL) values in a table. In real-time, dealing with NULL values in tables is very challenging, especially when performing aggregations, comparisons, or mathematical …

  9. Pragmatic Guide to SQL Server COALESCE Expression

    This tutorial shows you how to use the SQL Server COALESCE expression to deal with NULL in queries.

  10. A Complete Guide to the SQL Server COALESCE Function

    Sep 23, 2024 · What Is COALESCE in SQL Server? In SQL Server, COALESCE is a built-in function that returns the first non- NULL value from a list of expressions. It accepts a list of arguments, …