MYSQL字串拼接
阿新 • • 發佈:2018-11-01
一、MySQL自帶字串拼接函式
CONCAT 字串拼接
CONCAT_WS 指定字串分割拼接字串拼接
① 語法:CONCAT(str1,str2…)
解釋:concat 拼接 str1和str2字串, 省略號....代表可以多個字串拼接
示例:
SELECT CONCAT("hello","word");
SELECT CONCAT("how","are","you","?");
結果一: 結果二:
② 語法:CONCAT_WS(separator,str1,str2…)
解釋:concat_ws 拼接str1,str2,並且將separator【指定的字串】分割拼接,....代表多個字串拼接
示例:
SELECT CONCAT_WS(" ","hello","word");
SELECT CONCAT_WS(",","hello","word");
SELECT CONCAT_WS(" ","how","are","you","?");
結果一:
結果二:
結果三:
---------------------
作者:橙汁丶
來源:CSDN
原文:https://blog.csdn.net/a985548426/article/details/83380466
版權宣告:本文為博主原創文章,轉載請附上博文連結!