如题。

解决方案 »

  1.   

    “||”相当于SqlServer的“+”连接字符串。
      

  2.   

    --||与函数concat差不多
    SQL> select 'helo' || ' world!' from dual;
     
    'HELO'||'WORLD!'
    ----------------
    helo world!
     
    SQL> select concat('helo' , ' world!') from dual;
     
    CONCAT('HELO','WORLD!')
    -----------------------
    helo world!
     
    SQL> 
      

  3.   

    字符串连接符“||”
    相当于java的“+”