select deptno from emo ;
执行后有如下结果    DEPTNO
----------
        20
        30
        30
        20
        30
        30
        10
        20
        10
        30
        20    DEPTNO
----------
        30
        20
        10如何得到以下结果:
  DEPTNO1      DEPTNO2     DEPTNO3
----------   ----------  -----------
   3             5            6
 谢谢指教!!!