vote up 9 vote down star
8

To illustrate, assume that I have two tables as follows:

VehicleID Name
1         Chuck
2         Larry

LocationID VehicleID City
1          1         New York
2          1         Seattle
3          1         Vancouver
4          2         Los Angeles
5          2         Houston

I want to write a query to return the following results:

VehicleID Name    Locations
1         Chuck   New York, Seattle, Vancouver
2         Larry   Los Angeles, Houston

I know that this can be done using server side cursors, ie:

DECLARE @VehicleID int
DECLARE @VehicleName varchar(100)
DECLARE @LocationCity varchar(100)
DECLARE @Locations varchar(4000)
DECLARE @Results TABLE
(
  VehicleID int
  Name varchar(100)
  Locations varchar(4000)
)

DECLARE VehiclesCursor CURSOR FOR
SELECT
  [VehicleID]
, [Name]
FROM [Vehicles]

OPEN VehiclesCursor

FETCH NEXT FROM VehiclesCursor INTO
  @VehicleID
, @VehicleName
WHILE @@FETCH_STATUS = 0
BEGIN

  SET @Locations = ''

  DECLARE LocationsCursor CURSOR FOR
  SELECT
    [City]
  FROM [Locations]
  WHERE [VehicleID] = @VehicleID

  OPEN LocationsCursor

  FETCH NEXT FROM LocationsCursor INTO
    @LocationCity
  WHILE @@FETCH_STATUS = 0
  BEGIN
    SET @Locations = @Locations + @LocationCity

    FETCH NEXT FROM LocationsCursor INTO
      @LocationCity
  END
  CLOSE LocationsCursor
  DEALLOCATE LocationsCursor

  INSERT INTO @Results (VehicleID, Name, Locations) SELECT @VehicleID, @Name, @Locations

END     
CLOSE VehiclesCursor
DEALLOCATE VehiclesCursor

SELECT * FROM @Results

However, as you can see, this requires a great deal of code. What I would like is a generic function that would allow me to do something like this:

SELECT VehicleID
     , Name
     , JOIN(SELECT City FROM Locations WHERE VehicleID = Vehicles.VehicleID, ', ') AS Locations
FROM Vehicles

Is this possible? Or something similar?

flag

80% accept rate

7 Answers

vote up 7 vote down check

If you're using SQL Server 2005, you could use the FOR XML PATH command.

SELECT [VehicleID]
     , [Name]
     , (SELECT CAST(City + ', ' AS VARCHAR(MAX)) 
         FROM [Location] 
         WHERE (VehicleID = Vehicle.VehicleID) 
         FOR XML PATH ('')
      ) AS Locations
FROM [Vehicle]

It's a lot easier than using a cursor, and seems to work fairly well.

link|flag
This will work well with this data, but if your data might have xml special characters (e.g. <, >, &) they will be replaced (<, etc.) – GilM Oct 12 '08 at 0:39
vote up 10 vote down

I don't belive there's a way to do it within one query, but you can play tricks like this with a temporary variable:

declare @s varchar(max)
set @s = ''
select @s = @s + City + ',' from Locations

select @s

It's definitely less code than walking over a cursor, and probably more efficient.

link|flag
2  
I'm fairly certain you can take the "probably" out the last line. – Marc Gravell Oct 12 '08 at 9:13
Works great! Good stuff Matt! – Pure.Krome Jun 19 at 8:02
vote up 6 vote down

Note that Matt's code above will result in an extra comma at the end of the string; using COALESCE (or ISNULL for that matter) as shown in the link in Lance's post uses a similar method but doesn't leave you with an extra comma to remove. For the sake of completeness, here's the relevant code from Lance's link on sqlteam.com:

DECLARE @EmployeeList varchar(100)
SELECT @EmployeeList = COALESCE(@EmployeeList + ', ', '') + 
    CAST(EmpUniqueID AS varchar(5))
FROM SalesCallsEmployees
WHERE SalCal_UniqueID = 1
link|flag
vote up 4 vote down

Check out the COALESCE function. This article explains how to use it to get rows into a comma-delimited string: http://www.sqlteam.com/article/using-coalesce-to-build-comma-delimited-string

link|flag
vote up 4 vote down

The below code will work for Sql Server 2000/2005/2008

CREATE FUNCTION fnConcatVehicleCities(@VehicleId SMALLINT)
RETURNS VARCHAR(1000) AS
BEGIN
  DECLARE @csvCities VARCHAR(1000)
  SELECT @csvCities = COALESCE(@csvCities + ', ', '') + COALESCE(City,'')
  FROM Vehicles 
  WHERE VehicleId = @VehicleId 
  return @csvCities
END

-- //Once the User defined function is created then run the below sql

SELECT VehicleID
     , dbo.fnConcatVehicleCities(VehicleId) AS Locations
FROM Vehicles
GROUP BY VehicleID
link|flag
That VARCHAR(1000), that's some kind of limit, isn't it? Becuase when I run a similar concatenation query on a column list it will stop just around ~950 characters, no matter the size specified. – John Leidegren Aug 25 at 7:29
did you try Varchar(max)? – Binoj Antony Aug 25 at 13:57
vote up 1 vote down

i've wanted a CONCAT aggregate operator.

Like there is

SELECT SUM(column)
SELECT AVG(column)
SELECT STDEV(column)

i want a

SELECT CONCAT(column, ', ')
link|flag
I think microsoft is planning to put this feature in Sql Server 2012 ;) – Binoj Antony Jul 1 at 5:23
vote up 0 vote down

If you're running Sql Server 2005, you can write a custom aggregate function to handle this.

C# version:

using System;
using System.Data;
using System.Data.SqlClient;
using System.Data.SqlTypes;
using System.Text;
using Microsoft.SqlServer.Server;
[Serializable]
[Microsoft.SqlServer.Server.SqlUserDefinedAggregate(Format.UserDefined,MaxByteSize=8000)]
public class CSV:IBinarySerialize
{
    private StringBuilder Result;
    public void Init() {
    	this.Result = new StringBuilder();
    }

    public void Accumulate(SqlString Value) {
    	if (Value.IsNull) return;
    	this.Result.Append(Value.Value).Append(",");
    }
    public void Merge(CSV Group) {
    	this.Result.Append(Group.Result);
    }
    public SqlString Terminate() {
    	return new SqlString(this.Result.ToString());
    }
    public void Read(System.IO.BinaryReader r) {
    	this.Result = new StringBuilder(r.ReadString());
    }
    public void Write(System.IO.BinaryWriter w) {
    	w.Write(this.Result.ToString());
    }
}
link|flag

Your Answer

Get an OpenID
or

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