程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> MYSQL數據庫 >> MySQL綜合教程 >> mysql 數據字符連接函數CONCAT

mysql 數據字符連接函數CONCAT

編輯:MySQL綜合教程

mysql 數據字符連接函數CONCAT

mysql 數據字符連接函數CONCAT

CONCAT()是字符串連接函數
REPLACE()是字符串替換函數

CONCAT(參數1,參數2,...)

CONCAT(字符串,from_str,to_str)
返回字符串str,其字符串from_str的所有出現 由 字符串to_str代替.


個衍生函數是concat_ws(separator,string1,string2,...)

它與concat的區別在於,連接後,在連接處有一個分隔字符separator.如:

update users set homedir=concat_ws(´/´,´/data/disk1´,´part1´,´user1´) where userid=´user1´;

其結果是user1的homedir=´/data/disk1/part1/user1´


CONCAT(str1,str2,...)

Returns the string that results from concatenating the arguments. Returns NULL if any argument is NULL. May have one or more arguments. If all arguments are non-binary strings, the result is a non-binary string. If the arguments include any binary strings, the result is a binary string. A numeric argument is converted to its equivalent binary string form; if you want to avoid that you can use explicit type cast, like in this example: select CONCAT(CAST(int_col AS CHAR), char_col)


mysql> select CONCAT('My', 'S', 'QL');
-> 'MySQL'
mysql> select CONCAT('My', NULL, 'QL');
-> NULL
mysql> select CONCAT(14.3);
-> '14.3'

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved