Bạn có thể làm như thế này trong 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;
Trong 11G có một từ khóa PIVOT tương tự như của SQL Server.