Hello,
I have a query like select a, b, c from tab1
It results
10 100 1000
10 110 1100
10 120 1200
20 200 2000
20 210 2100
20 220 2200
Any idea how I can retrieve the data like this:
10 100 1000
110 1100
120 1200
20 200 2000
210 2100
220 2200
i.e the column a should only appear once....
Thanks in advance.
I have a query like select a, b, c from tab1
It results
10 100 1000
10 110 1100
10 120 1200
20 200 2000
20 210 2100
20 220 2200
Any idea how I can retrieve the data like this:
10 100 1000
110 1100
120 1200
20 200 2000
210 2100
220 2200
i.e the column a should only appear once....
Thanks in advance.