It's a simple + (String concatenation) (Transact-SQL) , a shorter way for writing a concat:
Example:
select 'Hello ' + 'World'
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
I note that Transact-SQL use + with many queries like this
SELECT PurchaseOrderNumber + ' (' + STR(RevisionNumber, 1) + ')' AS OrderRevision, CONVERT(nvarchar(30), OrderDate, 102) AS OrderDate FROM SalesLT.SalesOrderHeader;
'()' Why we use this Thanks
It's a simple + (String concatenation) (Transact-SQL) , a shorter way for writing a concat:
Example:
select 'Hello ' + 'World'