I am using following query to extract appointment data:
SELECT app.subject, AL.locationName
FROM FilteredAppointment app
INNER JOIN appointmentlocation AL ON app.activityid = AL.appointment
WHERE app.scheduledstart='2013-07-06 15:00:00.000'
The output is as follows with 2 rows (same appointment with two different locations):
How can i modify this query to display only one row with two locations concatenated with comma like below:
Column1:
(MZN; OTV)*...
Column2:
Room1,Room2
Thanks