Is there any way to change a SQL query that would normally return multiple rows with the same values into a single row?
for example, if my existing query returns this:
ColA ColB
1 AA
1 BB
1 CC
2 AA
3 AA
could I change the query to have only 3 rows returned and to place the 2nd and 3rd result for 1 into the first row, so that you'd have a row of: 1 AA BB CC
?