Agregate rows in Oracle SQL statement
Posted
by kilikopela
on Stack Overflow
See other posts from Stack Overflow
or by kilikopela
Published on 2010-04-19T12:14:35Z
Indexed on
2010/04/19
12:23 UTC
Read the original article
Hit count: 154
Hi,
I have a table of items stored this way :
A1 | B1
A1 | B2
A1 | B3
A2 | B1
A2 | B4
...
And I need to retrieve with a SQL Query :
A1 | B1, B2, B3
A2 | B1, B4
...
© Stack Overflow or respective owner