Quantcast
Channel: dBforums – Everything on Databases, Design, Developers and Administrators
Viewing all articles
Browse latest Browse all 13329

Difference Between CONCAT or +?

$
0
0
They appear to do the same thing in the query window but is there a reason to use one over the other? I am aware that CONACT was a new 2012 introduced T-SQL function.

Code:

SELECT 'A' + 'B' + 'C' AS PlusExmpl

CONCAT('A', 'B', 'C') AS ConExmpl


Viewing all articles
Browse latest Browse all 13329

Trending Articles