同上

解决方案 »

  1.   

    是这个意思吗?
    select col1 || '|' || col2 || '|' || col3 from table_name
      

  2.   

    select col1 || '|' || col2 || '|' || col3 from table_name
      

  3.   

    不太明白啥意思
    是不是这样啊
    select fName||'|'||lName from author
      

  4.   

    SQL> select * from scott.rpt;        ID     STATUS
    ---------- ----------
             1          1
             2          1
             3          1
             4          2
             5          2
             6          1
             7          1
             8          1已选择8行。SQL> select id||'|'||status from scott.rpt;ID||'|'||STATUS
    ------------------------------------------------
    1|1
    2|1
    3|1
    4|2
    5|2
    6|1
    7|1
    8|1已选择8行。