I have a table A like this:
id field value
----------------------
1845 name john
1845 post manager
1845 birth 1980
1846 name alex
1846 post employee
1846 birth 1986
i want a result set that look like this:
id name post birth
----------------------------------------
1845 john manager 1980
1846 alex employee 1986
.
.
.
is there any way in oracle to do this?