Suppose I have this table [Table1]

Name    Mark
------- ------
ABC     10
DEF     10
GHI     10
JKL     20
MNO     20
PQR     30

What should be my SQL statement to retrieve a record that looks like this: (group by [mark]). I have done the 1 and 2 columns but don't know how to accomplish the third column (concat the [name] with the same [mark])

mark count     names
---- -----     -----------
10       3     ABC,DEF,GHI
20       2     JKL,MNO
30       1     PQR

I'm using Microsoft SQL. Please help. Thanks

link|improve this question

What DBMS are you using? – Kirill Polishchuk Jul 5 '11 at 7:57
Microsoft SQL. Sorry for not including this information – yonan2236 Jul 5 '11 at 7:58
See also stackoverflow.com/questions/451415/… – Ed Guiness Jul 5 '11 at 8:14
feedback

3 Answers

up vote 8 down vote accepted

If MS SQL 2005 or higher.

declare @t table([name] varchar(max), mark int)

insert @t values ('ABC', 10), ('DEF', 10), ('GHI', 10),
    ('JKL', 20), ('MNO', 20), ('PQR', 30)


select t.mark, COUNT(*) [count]
    ,STUFF((
        select ',' + [name]
        from @t t1
        where t1.mark = t.mark
        for xml path(''), type
    ).value('.', 'varchar(max)'), 1, 1, '') [values]
from @t t
group by t.mark

Output:

mark        count       values
----------- ----------- --------------
10          3           ABC,DEF,GHI
20          2           JKL,MNO
30          1           PQR
link|improve this answer
1  
+1 for for xml path('') – abcdefghi Jul 5 '11 at 9:01
Does not make difference when not writing [values] ? – abcdefghi Jul 5 '11 at 9:05
@SQL, it's only alias, so no matter – Kirill Polishchuk Jul 5 '11 at 9:13
1  
You should try this with a name like Barns & Noble. It's not pretty. To fix that you can do like this instead. stackoverflow.com/questions/6074321/… – Mikael Eriksson Jul 5 '11 at 11:44
1  
@Mikael, nice remark +1, I updated my answer. – Kirill Polishchuk Jul 5 '11 at 12:35
show 2 more comments
feedback

polishchuks solution is more elegant, but this is basically the same thing, we just deal with the trailing comma differently.

CREATE TABLE #Marks(Name nchar(3), Mark int)

INSERT INTO #Marks

SELECT 'ABC', 10 UNION ALL
SELECT 'DEF', 10 UNION ALL
SELECT 'GHI', 10 UNION ALL
SELECT 'JKL', 20 UNION ALL
SELECT 'MNO', 20 UNION ALL
SELECT 'PQR', 30 


SELECT 
    mark,  
    [count],
    CASE WHEN Len(Names) > 0 THEN LEFT(Names, LEN(Names) -1) ELSE '' END names  
    FROM
(
SELECT
    Mark,
    COUNT(Mark) AS [count], 
        (
        SELECT DISTINCT 
            Name + ', '
        FROM 
            #Marks M1
        WHERE M1.Mark = M2.Mark
        FOR XML PATH('')    
        ) Names 
FROM #Marks M2
GROUP BY Mark
) M
link|improve this answer
I am not sure if you need the first distinct clause in the first subquery when you are doing group by mark, please correct me if I am wrong... – Ram Jul 5 '11 at 9:39
yep you wouldn't need it – woggles Jul 5 '11 at 10:18
feedback

Here's a performance-related answer!

http://jerrytech.blogspot.com/2010/04/tsql-concatenate-strings-1-2-3-and.html

Using XML functions in a large query is a performance killer.

Using a CTE is a performance superstar.

Check out the link, it will explain how.

I admit the work to accomplish it is more.

But the result is milliseconds over millions of rows.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.