SQL Server Concat With +

Example

Add 2 strings together:

SELECT 'iampsp' + '.com';

Definition and Usage

The + operator allows you to add two or more strings together.

 

Syntax

string1 + string2 + string_n

Continue reading SQL Server Concat With +