vote up 2 vote down star
1

Hello everyone.

So I'm trying to migrate a MySQL-based app over to MS Sql Server 2005 (not by choice, but that's life).

In the original app, we used almost entirely ANSI-SQL compliant statements, with one significant exception -- we used MySQL's group_concat function fairly frequently.

group_concat, by the way, does this: given a table of, say, employee names and projects...

SELECT empName, projID FROM project_members;

returns:

ANDY   |  A100
ANDY   |  B391
ANDY   |  X010
TOM    |  A100
TOM    |  A510

... and here's what you get with group_concat:

SELECT empName, group_concat(projID SEPARATOR ' / ') 
FROM project_members GROUP BY empName;

returns:

ANDY   |  A100 / B391 / X010
TOM    |  A100 / A510

...So what I'd like to know is: Is it possible to write, say, a user-defined function in MS SQL which emulates the functionality of group_concat? I have almost no experience using UDFs, stored procedures, or anything like that -- just straight-up SQL -- so please err on the side of too much explanation :)

flag

2 Answers

vote up 2 vote down check

No REAL easy way to do this. Lots of ideas out there, though.

Best one I've found:

SELECT table_name, LEFT(column_names , LEN(column_names )-1) AS column_names
FROM information_schema.columns AS extern
CROSS APPLY
(
    SELECT column_name + ','
    FROM information_schema.columns AS intern
    WHERE extern.table_name = intern.table_name
    FOR XML PATH('')
) pre_trimmed (column_names)
GROUP BY table_name, column_names;
link|flag
vote up 3 vote down

There is no easy way to do this with just T-SQL in SQL Server.

My recommendation is to create a CLR aggregate (which requires programming in .NET) which will take the values and concatenate them into a single value, and then use that aggregate in a SQL Statement with a simple GROUP BY.

For more information on CLR aggregates, see here:

http://msdn.microsoft.com/en-us/library/91e6taax(VS.80).aspx

link|flag
This does sound like the best way to do it - I have no .NET programming experience, though... is this something that'd be pretty easy to learn enough to figure it out in a hurry? Or (as I'm on a short timeline here) would I be better off finding a good .NET programmer? – DanM Jan 16 at 19:07
@DanM: For something like this, it's not that hard at all. I wouldn't go and hire a separate .NET programmer for just this. – casperOne Feb 9 at 14:23

Your Answer

Get an OpenID
or

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