About 1,700,000 results
Open links in new tab
  1. CONCAT (Transact-SQL) - SQL Server | Microsoft Learn

    Nov 18, 2025 · CONCAT takes a variable number of string arguments and concatenates (or joins) them into a single string. It requires a minimum of two input values; otherwise, CONCAT raises an error.

  2. SQL Server CONCAT () Function - W3Schools

    Definition and Usage The CONCAT () function adds two or more strings together. Note: See also Concat with the + operator and CONCAT_WS (). Syntax CONCAT (string1, string2, ...., string_n)

  3. SQL Concatenate Examples - SQL Server Tips

    Oct 5, 2021 · In this article we look at how to concatenate SQL Server data using various methods using concatenation operator, functions CONCAT and CONCAT_WS.

  4. How to Concatenate Text From Multiple Rows in SQL Server

    Jul 23, 2025 · In this article, we will discuss how to concatenate text from multiple rows into a single text string in SQL Server using various methods which are COALESCE Function, XML PATH Function, …

  5. How to Combine Two Columns in SQL - SQL Server Guides

    6 days ago · The biggest advantage of CONCAT () over the + operator in SQL Server is how it handles data types. CONCAT () is smart enough to automatically turn numbers into strings behind the …

  6. Efficient String Concatenation in SQL Server - Axial SQL

    Nov 24, 2025 · Learn how to efficiently concatenate strings in SQL Server. Explore different methods and best practices for string concatenation in SQL Server.

  7. SQL Server CONCAT Function By Practical Examples

    In this tutorial, you will learn how to use the SQL Server CONCAT () function to join multiple strings into one string.

  8. SQL concatenate strings

    In SQL, concatenating strings involves combining two or more string values into a single string. This can be useful in various scenarios, such as creating a full name by combining a first name and a last …

  9. SQL Server: CONCAT Function - TechOnTheNet

    This SQL Server tutorial explains how to use the CONCAT function in SQL Server (Transact-SQL) with syntax and examples. In SQL Server (Transact-SQL), the CONCAT function allows you to …

  10. SQL CONCAT Function Use and Examples - SQL Server Tips

    Apr 27, 2025 · The CONCAT function in SQL Server helps you concatenate multiple strings, dates and numbers into a combined string.