纵向排列如何改成横向的?????????
 oracle的sql语句如下:
 select distinct
        zla.authorized_person     
  from sdcd.zdeco_head_all h,sdcd.zdeco_line_all zla
 where h.zdeco_head_id=zla.zdeco_head_id
 and h.zdeco_head_number='2012049'
 运行结果:
authorized_person
张三
李四
王五但是我想要的是下面的效果:authorized_person
张三,李四,王五或者
authorized_person
张三 李四 王五请问这条SQL语句应该怎么修改?????????