About 298,000 results
Open links in new tab
  1. How to combine first name, middle name and last name in SQL …

    Feb 2, 2018 · Concat is an SQl server function that takes a variable number of string arguments and concatenates (JOIN) them into a single string. Quote marks for making a single space …

  2. Concatenate SQL Server Column Values with CONCAT()

    Jan 13, 2025 · Learn how to concatenate SQL Server columns into a string with the T-SQL CONCAT () function for single values.

  3. CONCAT() in SQL: Tips and Techniques for Efficient Queries

    Nov 3, 2024 · CONCAT () in SQL is a data concatenation method. Learn about the tips, techniques, and practical examples of how to use it efficiently in SQL queries. Concatenate …

  4. Concatenation in SQL query – SQL Tutorial

    In summary, concatenation in SQL Server can be done using either the + operator or the CONCAT function, with CONCAT being more robust in handling NULL values.

  5. SQL Server CONCATENATE Operations with SQL Plus (+) and SQL CONCAT ...

    In this article, we explored useful SQL functions to concatenate multiple values together using the SQL Plus (+) operator and SQL CONCAT function. If you had comments or questions, feel …

  6. Mastering the CONCAT Function in SQL: A Comprehensive Guide

    In this blog, we’ll dive into what CONCAT is, how it works, when to use it, and how it compares to alternatives like the || operator or CONCAT_WS. With detailed examples and clear …

  7. Simple CONCAT () Usage vs Manual String Building in SQL Server

    Sep 26, 2025 · NULL handling: CONCAT() replaces NULL values with an empty string while preserving the non-NULL parts of the concatenated string. Using the concatenation operator …

  8. How to Use the SQL Server CONCAT Function - LeeMarkum.com

    A common usage of concatenation, or joining column values together in a string, is combining a FirstName and LastName column into a FullName column. Another common usage might be …

  9. sql - How do I get first name and last name as whole name in a …

    SELECT CONCAT(FirstName , ' ' , MiddleName , ' ' , Lastname) AS Name FROM TableName; Note: This query return if all columns have some value if anyone is null or empty then it will …

  10. How to Concatenate Two Columns in SQL? - SQL Knowledge Center

    Mar 3, 2024 · After initializing the basics of SQL concatenation, it’s essential to dive into the practical implementation, and CONCAT () is our starting point. This function is straightforward, …