SQL Server concatenation string [SQL Server]

Source: Internet
Author: User

-- Create a table

 use tempdb
IF OBJECT_ID('Tab') is not null
DROP TABLE Tab
GO
CREATE TABLE Tab
(
[Col1] INT
,[Col2] nvarchar(1)
)

-- Generate Test Data

 INSERT Tab
SELECT 1,N'a'
UNION all
SELECT 1,N'b'
UNION all
SELECT 1,N'c'
UNION all
SELECT 2,N'd'
UNION all
SELECT 2,N'e'
UNION all
SELECT 3,N'f'
GO

Select col1, T. col2 from tab t

/******************** Result ****************** **

Col1 col2
1
1 B
1 c

2 D
2 E

3 F

/*************************************** ****/

-- Create a function

Code

 IF OBJECT_ID('F_Str') is not null
DROP FUNCTION F_Str
go
CREATE FUNCTION F_Str
(
@Col1 INT
)
RETURNS NVARCHAR(1000)
AS
BEGIN
DECLARE @Str NVARCHAR(1000)
SELECT @Str=ISNULL(@Str+',','')+Col2
FROM Tab
WHERE Col1=@Col1
RETURN @Str
END
GO

-- Call

 SELECT Col1,Col2=dbo.F_Str(Col1)
FROM Tab
GROUP BY Col1

-- Or

 SELECT DISTINCT Col1,Col2=dbo.F_Str(Col1)
FROM Tab
GO

-- Running result

Col1 col2

1 a, B, c
2 D, E
3 F

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.