[size=medium]
以前用oracle的時候,字串拼接用 | ,今天在mysql上試試發現不行,用 || 也不行,因為一般資料庫對 || 的支援還是很不錯的,經過查詢mysql幫助手冊,發現mysql中的字串拼接使用的是concat函式,如
mysql> select concat(prod_name,prod_price)
from products;
+------------------------------+
| concat(prod_name,prod_price) |
+------------------------------+
| fish bean bag toy3.49 |
| bird bean bag toy3.49 |
| rabbit bean bag toy3.49 |
| 8 inch teddy bear5.99 |
| 12 inch teddy bear8.99 |
| 18 inch teddy bear11.99 |
| raggedy ann4.99 |
| king doll9.49 |
| queen doll9.49 |
+------------------------------+
[color=red]在mysql中 || 的意思是or的意思。[/color]
[/size]
MYSQL字串拼接
一 mysql自帶字串拼接函式 concat 字串拼接 concat ws 指定字串分割拼接字串拼接 語法 concat str1,str2 解釋 concat 拼接 str1和str2字串,省略號.代表可以多個字串拼接 示例 select concat hello word select conc...
mysql字串拼接
concat concat ws group concat 為了方便下面舉例,這裡放個student表供下面使用 s id s name s 01張三男02 李四男03王五男04 趙六null 最常用的字串拼接方法,但遇到拼接中的字串出現null的情況會返回null demo1 mysql sele...
mysql字串拼接
1.concat 2.concat ws 3.group concat 為了方便下面舉例,這裡放個student表供下面使用 s id s name s 01 張三 男 02 李四 男 03 王五 男 04 趙六 null 一 concat 最常用的字串拼接方法,但遇到拼接中的字串出現null的情況...