SQL Server string aggregation function _mssql

Source: Internet
Author: User
As shown in the following table: aggregationtable
Id Name
1 Zhao
2 Money
1 Sun
1 Li
2 Week

If you want the aggregate results of the following diagram

Id Name
1 Zhaosun Lee
2 Chan Zhou

You can't do it with Sum, AVG, Count, Count (*), MAX, and Min. Because these are aggregates of values. But we can solve this problem by customizing the function.
1. First set up the test table and insert the test data:

Copy Code code as follows:

CREATE TABLE aggregationtable (Id int, [Name] varchar (10))
Go
INSERT INTO aggregationtable
Select 1, ' Zhao ' union ALL
Select 2, ' Money ' UNION ALL
Select 1, ' Sun ' UNION ALL
Select 1, ' Li ' union All
Select 2, ' Zhou '
Go

2. Create a custom string aggregate function
Copy Code code as follows:

Create FUNCTION aggregatestring
(
@Id int
)
RETURNS varchar (1024)
As
BEGIN
DECLARE @Str varchar (1024)
Set @Str = '
Select @Str = @Str + [Name] from aggregationtable
where [Id] = @Id
Return @Str
End
Go

3. Execute the following statement and view the results
Copy Code code as follows:

SELECT dbo. Aggregatestring (ID), ID from aggregationtable
GROUP BY Id

The results are:

Id Name
1 Zhaosun Lee
2 Chan Zhou

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.