About 337,000 results
Open links in new tab
  1. 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)

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

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

  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. CONCAT – SQL Tutorial

    SQL CONCAT function is a built-in string function that is used to concatenate two or more strings together. The CONCAT function is available in most of the popular database management …

  6. The Complete Guide to CONCAT in SQL Queries: Syntax, …

    Jun 3, 2025 · Master the SQL CONCAT function with this comprehensive guide to SQL string concatenation techniques.

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

  8. SQL CONCAT () Function - Syntax, Examples [4] - Tutorial Kart

    In this tutorial, we will go through SQL CONCAT String function, its syntax, and how to use this function to join two or more strings into a single string, with the help of well detailed examples.

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

    The CONCAT () function joins two or more string expressions in an end-to-end manner and returns a single string.

  10. SQL CONCAT () Function: Syntax, Usage, and Examples

    Learn how to use SQL CONCAT to combine strings, format data, handle NULLs, and generate readable output across major databases.