Home about IT Motivation Course Sales Project About Me

Sunday, February 01, 2009

penggunaan decode oracle untuk pivot tabel

id|kategori|tanggal|issue|
1|hardware|januari|cpu rusak
2|software|januari|office install
3|hardware|januari|tambah memory
4|hardware|januari|ganti HD

5|software|februari|install XP
6|hardware|februari|tambah RAM
7|software|februari|repair Ms. outlook

8|hardware|maret|ganti hardisk
9|hardware|maret|tambah memory

dst.....


tanggal software hardware
januari 1 3
februari 2 1
maret 0 2
dst....

select tanggal , decode (kategori, 'software',count(kategori),0)software,
decode(kategori , 'hardware',count(kategori),0 hardware
from nama tabel
group by tanggal

No comments: