Login     Register

        Contact Us     Search

XLeratorDB/strings Online Documentation

SQL Server function for joining string values


JOINSTR

Updated: 14 December 2009

Use JOINSTR to concatenate the text from multiple rows in a table.
Syntax
SELECT [wctString].[wct].[JOINSTR] (
   <@Separator, nvarchar(4000),>
 ,<@MaxItems, int,>
 ,<@Values_Tablename, nvarchar(4000),>
 ,<@ColumnName, nvarchar(4000),>
 ,<@GroupedColumnName, nvarchar(4000),>
 ,<@GroupedColumnValue, sql_variant,>)
Arguments
@Separator
is the text value to be used to connect the text to be concatenated. The @Separator argument can be of data types that are implicitly convertible to nvarchar or ntext.
 
@MaxItems
is the maximum number of items to be included in the resultant text. The @MaxItems argument can be of data types that are implicitly convertible to int.
 
@Values_Tablename
the name of the table that contains the text to be concatenated. The @Values_tablename argument can be of data types that are implicitly convertible to nvarchar or ntext.
 
@ColumnName
the name of the column in @Values_Tablename that contains the text to be concatenated. The @Column_tablename argument can be of data types that are implicitly convertible to nvarchar or ntext.
 
@GroupedColumnName
the name, as text, of the column in the table or view specified by @Values_Tablename which will be used for grouping the results.
@GroupedColumnValue
the column value to do the grouping on.
 
Return Types
nvarchar(max)
Remarks
·         For more complicated queries, consider using the JOINSTR_q function.
Examples
For this example, we have loaded up the Gettysburg addres into a table and we are going to use JOINSTR to put it back together. You can find the data here.
select wct.JOINSTR(' '
,NULL
,'DOCS'
,'WORD'
,'DOCNAME'
,'Gettysburg Address')
 
This produces the following result
-------------------------------------------------------------------------------------------------
Four score and seven years ago our fathers brought forth on this continent, a new nation, conceived in Liberty, and dedicated to the proposition that all men are created equal. Now we are engaged in a great civil war, testing whether that nation, or any nation so conceived and so dedicated, can long endure. We are met on a great battle-field of that war. We have come to dedicate a portion of that field, as a final resting place for those who here gave their lives that that nation might live. It is altogether fitting and proper that we should do this. But, in a larger sense, we can not dedicate—we can not consecrate—we can not hallow—this ground. The brave men, living and dead, who struggled here, have consecrated it, far above our poor power to add or detract. The world will little note, nor long remember what we say here, but it can never forget what they did here. It is for us the living, rather, to be dedicated here to the unfinished work which they who fought here have thus far so nobly advanced. It is rather for us to be here dedicated to the great task remaining before us—that from these honored dead we take increased devotion to that cause for which they gave the last full measure of devotion—that we here highly resolve that these dead shall not have died in vain—that this nation, under God, shall have a new birth of freedom—and that government of the people, by the people, for the people, shall not perish from the earth.
 
(1 row(s) affected)
 
 
See Also

 



Copyright 2008-2024 Westclintech LLC         Privacy Policy        Terms of Service