Ich muss irgendwie Zeilen gruppieren, während eine bestimmte Spalte verkettet wird, ich bin nicht sicher, wie ich dies tun würde. Das Folgende ist ein Beispiel für das, was ich brauche.
CREATE TABLE People(
PersonName varchar(100),
PersonAge int
)
INSERT INTO People
SELECT 'bill', 21
INSERT INTO People
SELECT 'harry', 21
INSERT INTO People
SELECT 'wesley', 21
INSERT INTO People
SELECT 'tom', 42
INSERT INTO People
SELECT 'paul', 42
INSERT INTO People
SELECT 'phil', 53
Ein normaler Select aus dieser Tabelle führt zu folgendem Ergebnis:
bill 21
harry 21
wesley 21
tom 42
paul 42
phil 53
Ich brauche Folgendes:
bill, harry, wesley 21
tom,paul 42
phil 53
Ich bin mir nicht sicher, ob dies möglich ist, aber es wäre wirklich hilfreich, wenn jemand weiß, wie man es macht. Vielen Dank im Voraus.