I have a table such as:

|Date         |Name|
--------------------
|'20-May-2011'|Bob |
|'20-May-2011'|Fred|
|'20-May-2011'|Jim |
|'21-May-2011'|Bob |
|'21-May-2011'|Ed  |
|'22-May-2011'|Bill|

I need a query to return:

|Date         |Count|Names           |
--------------------------------------
|'20-May-2011'|    3|'Bob, Fred, Jim'|
|'21-May-2011'|    2|'Bob, Ed'       |
|'22-May-2011'|    1|'Bill'          |

In other words, I want a list and a count of the names by date. The best I can come up with is:

SELECT list.[Date], [Count], [Names]
FROM (
    SELECT  [Date], 
            STUFF((
                SELECT ', ' + [Name]
                FROM #table t2
                WHERE t2.[Date] = t.[Date]
                ORDER BY [Name]
                FOR XML PATH('')
            ), 1, 2, '') AS [Names]
    FROM #table t
    GROUP BY [Date]
) [list]
INNER JOIN (
    SELECT  [Date], 
            COUNT(*) AS [Count]
    FROM #table t
    GROUP BY [Date]
) [count]
    ON list.[Date] = count.[Date]
ORDER BY [Count] DESC, list.[Date]

Is there a more elegant query?

link|improve this question

71% accept rate
No, I don't think there's any significantly simpler or "more elegant" code for this for SQL Server at this time – marc_s May 20 '11 at 15:49
Laurence, I'm not sure what you mean. This is transact SQL executed directly against the server.. – Tom Hunter May 20 '11 at 16:24
I'm basically wondering if it's possible to do this in one query rather than two sub queries joined together. – Tom Hunter May 20 '11 at 16:24
feedback

2 Answers

up vote 2 down vote accepted
SELECT  [Date], 
        COUNT(*) AS [Count],
        STUFF((
            SELECT ', ' + [Name]
            FROM #table t2
            WHERE t2.[Date] = t.[Date]
            ORDER BY [Name]
            FOR XML PATH('')
        ), 1, 2, '') AS [Names]
FROM #table t
GROUP BY [Date]

If you think that the Name column might contain <>'"& you should do like this instead:

SELECT  [Date], 
        COUNT(*) AS [Count],
        STUFF((
            SELECT ', ' + [Name]
            FROM #table t2
            WHERE t2.[Date] = t.[Date]
            ORDER BY [Name]
            FOR XML PATH(''), TYPE
        ).value('.', 'varchar(max)'), 1, 2, '') AS [Names]
FROM #table t
GROUP BY [Date]
link|improve this answer
Thanks Mikael, this is it. Not sure why I couldn't get it to work yesterday. – Tom Hunter May 21 '11 at 18:04
feedback

Not a whole lot better - but maybe using a single CTE to "encapsulate" the XML-PATH-stuffing into a more presentable way would work??

;WITH ConsolidatedData AS
(
SELECT  
    [Date], 
    STUFF((
                SELECT ', ' + [Name]
                FROM #table t2
                WHERE t2.[Date] = t.[Date]
                ORDER BY [Name]
                FOR XML PATH('')
            ), 1, 2, '') AS [Names]
    FROM #table t
)
SELECT
    [Date], Names, COUNT(*)
FROM 
    ConsolidatedData
GROUP BY 
    [Date], Names

Not sure if you'd count this as one "compound" statement, or two.... :-)

One word of advice: try not to use SQL Server identifiers and reserved words (like Date or Order) as your own column and/or table names.... it's always rather messy....

link|improve this answer
3  
So you would take issue with SELECT [SELECT] FROM [FROM] WHERE [WHERE] = 'WHERE'? – Yuck May 20 '11 at 17:15
@Yuck: YUCK !! :-) Yes, that seems a tad "unpleasant" :-) – marc_s May 20 '11 at 17:18
3  
@Yuck - Might as well add these too GROUP BY [GROUP BY] ORDER BY [ORDER BY] – Brent D May 20 '11 at 17:18
I'm sorry I couldn't resist. – Yuck May 20 '11 at 17:19
feedback

Your Answer

 
or
required, but never shown

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