How to concatenate multiple rows into single string or single row
- using sTRING_AGG function
The STRING_AGG function is available from sql server 2017 onwards.The STRING_AGG is a string function which will simplify the concatenation of rows.
The sysntax for using STRING_AGG function as per below.
SELECT
STRING_AGG(
ISNULL
(Narration,
' '
),
','
)
As
Narration
From
PostedNarrationYou can use comma and space between rows for concatenate.