本帖最后由 zixin20 于 2012-04-24 12:18:56 编辑

解决方案 »

  1.   

    你这是电脑桌面的图片 不能上传的  把图片上传到csdn的相册 然后复制地图网址显示到这
      

  2.   

    SQL> select id,wmsys.wm_concat(value)
      2  from a
      3  group by id;不知道是不是你想要的结果
      

  3.   

    scott@TEST> select distinct a1.id,a1.value value1,a2.value value2,a3.value value3 from a a1,a a2,a a3 where a1.id=a2.id and a2.id=a3.id and a1.flag='a1' and a2.flag='a2' and a3.flag='a3';        ID VALUE      VALUE      VALUE1
    ---------- ---------- ---------- ----------
             3 g          h          j
             1 a          b          c
             2 d          e          f