Sql server CONCAT function

In this article I am going to explain Sql server CONCAT function.


Description:
CONCAT function is used to concatenate two or more string values together.

Syntax
concat('string1','string2')

Example: 
SELECT CONCAT('article', 'mirror') as [website]

Post a Comment

0 Comments