Merge string groups using one SQL statement

Source: Internet
Author: User
This article uses an SQL statement to merge multiple rows in a column of an SQL table into a single value and a string group. If you need it, refer to "merge.

This article uses an SQL statement to merge multiple rows in a column of an SQL table into a single value and a string group. If you need it, refer to "merge.

The Code is as follows:

Declare @ t table (Id int, Value char (5 ))
Insert into @ t
'1', '09: 01 'union
Select '1', '12: 05 'union
Select '2', '08: 04 'union
Select '2', '17: 09 'union
Select '3', '123'


Select * from @ t
Select id, stuff (select ',' + rtrim (value)
From @ t
Where id = a. id for xml path ('')
), 1, 1, '') as [values]
From (select distinct id from @ t)

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.