SQL CONCAT Function (concatenate): 21 Query Examples
SQL CONCAT Function (concatenate): 21 Query Examples. February 1, 2022 by Code-geek. An example of using CONCAT function in SQL SELECT CONCAT('SQL CONCAT function', ' demo'); Output: SQL CONCAT function demo String Concatenation in SQL Server SELECT FirstName + ' ' + LastName AS FullName FROM Employees