In
this article I am going to explain Sql server CONCAT function.
In
previous article I have explained how to view code of store procedure in Sqlserver, how to implement button click event in Angularjs and how to get dateand time from current date in Sql server.
Description:
CONCAT
function is used to concatenate two or more string values together.
Syntax
concat('string1','string2')
Example:
SELECT CONCAT('article', 'mirror') as [website]
0 Comments