CSMwebmaster
Programmer
I have a query:
SELECT Name, Game FROM Sports
This gives me the following results.
Name | Game
Jane Volleyball
Jane Basketball
Sandy track
Sandy Golf
I would like the result to be using SQL:
Name | Game
Jane Volleyball,Basketball
Sandy Track,Golf
Any Ideas?
SELECT Name, Game FROM Sports
This gives me the following results.
Name | Game
Jane Volleyball
Jane Basketball
Sandy track
Sandy Golf
I would like the result to be using SQL:
Name | Game
Jane Volleyball,Basketball
Sandy Track,Golf
Any Ideas?