About 1,610,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 …

  2. SQL Server CONCAT () Function - W3Schools.com

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

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

  6. SQL Server CONCAT () Function - TutorialsTeacher.com

    Use the CONCAT_WS () method to concatenate two or more strings with the specified separator. In the below example, columns FirstName and LastName values are joined with a comma …

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

    Jul 23, 2025 · There are many ways we can concatenate multiple rows into single row SQL Server. We can use different ways based on need and convenience.

  8. sql - Concatenate text from multiple rows into a single text string ...

    Consider a database table holding names, with three rows: Is there an easy way to turn this into a single string of Peter, Paul, Mary? For answers specific to SQL Server, try this question. I wish …

  9. Efficient String Concatenation in SQL Server

    Nov 24, 2025 · String concatenation is a common operation in SQL Server when it comes to combining values or fields in queries or stored procedures. However, there are certain …

  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.