आप इसे 10G में इस तरह कर सकते हैं:
select salesboyname,
sum (case when product='P1' then amount end) as p1,
sum (case when product='P2' then amount end) as p2,
sum (case when product='P3' then amount end) as p3
from tblsales
group by salesboyname;
11G में SQL सर्वर के समान एक PIVOT कीवर्ड होता है।