original data (image)

I want to display my data by concatenating several columns. But the data that appears less than perfect: there is a comma behind at the end of the concatenations, like the picture shows:

Here is the query that I created in oracle 10g
select id_pegawai,
whitelist_pembayaran||decode(whitelist_pembayaran,null,null,', ')||
whitelist_pemasang||decode(whitelist_pemasang,null,null,', ')||
whitelist_jenis_iklan||decode(whitelist_jenis_iklan,null,null) as whitelist,
blacklist_pembayaran||decode(blacklist_pembayaran,null,null,', ')||
blacklist_pemasang||decode(blacklist_pemasang,null,null,', ')||
blacklist_jenis_iklan||decode(blacklist_jenis_iklan,null,null) as blacklist
from verifikator order by id_verifikator desc
so you just want to remove the comma at the end?
RTRIMit.