mysql教程 concat() 連接字符串詳細說明
在有些情況下你想兩個或多個字符串,在mysql中有個字符串連接函數concat(),下面我們就講講它的使用方法吧。
concat語法
concat(str1,str2,...)
簡單實例兩個字符串連接
select concat('hello ','world!');
當然你也可以使用表中的字段而不是字符串常量,你可以混合使用它們。讓我們看看稍微復雜的例子。假設我們有一個用戶表中的姓名和年齡,現在要連接在一起,我們就可以使用select statement uses the concat
select concat(name, ' is ', age,' years old.') from user;
bill is 28 years old.
mark is 32 years old.
julia is 44 years old.
alex is 52 years old.