sql> select concat('abc','def') from dual;
concat
------
abcdef
sql> select 'abc'||'def' from dual;
'abc'|
------
abcdef
sql> select 'abc'||'def'||'ghi' from dual;
'abc'||'d
---------
abcdefghi
sql> select concat('abc','def','ghi') from dual;
select concat('abc','def','ghi') from dual
*第 1 行出現錯誤:
ora-00909: 引數個數無效
sql>
sql> select concat(concat('abc','def'),'ghi') from dual;
concat(co
---------
abcdefghi
sql>
我們一般大量使用||(特別是在儲存過程中),而很少(幾乎沒有)使用concat函式。
因為concat函式只能帶兩個引數,而||我們跟無數個引數。
SQL 拼接字串
寫sql的時候有時候用到需要拼接多個字段或者在查詢出結果的字段裡加入一部分固定的字串。方法一 在查詢到的結果後,用 去拼接。這種方法就不在贅述。方法二 使用資料庫提供的方法concat a,b oracle 中concat a,b 只能有兩個引數,如果concat中連線的值不是字串,那麼oracle...
sql字串拼接
oracle 使用 或者concat sql select aaa bbb from dual aaa bbb aaabbb sql select concat aaa ccc from dual concat aaa aaaccc mysql中,使用 如果字串全是數字則轉化為數字,否則轉換為0,也...
sql字串拼接
在sql語句中經常需要進行字串拼接,以sqlserver,oracle,mysql三種資料庫為例,因為這三種資料庫具有代表性。sqlserver select 123 456 oracle select 123 456 from dual 或select concat 123 456 from du...