Sample database:
Field 1 Field 2
abc x1
abc x2
abc x3
def y1
def y2
def y3
ghi x1
ghi y2
ghi y3
I would like to run a query that would consolidate Field 2 into one record so the results look like this:
Field 1 Field 2
abc x1, x2, x3
def y1, y2, y3
ghi x1, y2, y3
Any ideas?
Field 1 Field 2
abc x1
abc x2
abc x3
def y1
def y2
def y3
ghi x1
ghi y2
ghi y3
I would like to run a query that would consolidate Field 2 into one record so the results look like this:
Field 1 Field 2
abc x1, x2, x3
def y1, y2, y3
ghi x1, y2, y3
Any ideas?