国产成人精品亚洲777人妖,欧美日韩精品一区视频,最新亚洲国产,国产乱码精品一区二区亚洲

您的位置:首頁技術文章
文章詳情頁

mysql 模糊查詢 concat()的用法詳解

瀏覽:203日期:2023-02-18 16:43:35
目錄
  • mysql 模糊查詢 concat()
  • 補充:MySQL之concat的用法
    • 一、concat()函數
    • 二、concat_ws()函數
    • 三、group_concat()函數
    • 四、concat_ws()和group_concat()聯合使用

mysql 模糊查詢 concat()

concat() 函數,是用來連接字符串。

精確查詢: select * from user where name=”zhangsan” 
模糊查詢; select * from user where name like “%zhang%”

在實際的使用中,條件是作為參數傳遞進來的。 所以我們使用 concat() 函數

mybatis: 

select * from user where name like concat(“%”, #{name},”%”)?

原生SQL:

case when ?1 is null then 1=1 else name like CONCAT("%",?1,"%") 

END 

concat(str1,str2,str3,str4,……….); 連接字符串函數,會生成一個字符串 

補充:MySQL之concat的用法

一、concat()函數

1、功能:將多個字符串連接成一個字符串。

2、語法:concat(str1, str2,...)

說明:返回結果為連接參數產生的字符串,如果有任何一個參數為null,則返回值為null。

3、舉例:select concat (id, name, score) as 別名 from 表名;

二、concat_ws()函數

1、功能:和concat()一樣,但是可以指定分隔符(concat_ws就是concat with separator)

2、語法:concat_ws(separator, str1, str2, ...)

說明:第一個參數指定分隔符。需要注意的是分隔符不能為null,如果為null,則返回結果為null。

3、舉例:select concat ('#',id, name, score) as 別名 from 表名;

三、group_concat()函數

1、功能:將group by產生的同一個分組中的值連接起來,返回一個字符串結果。

2、語法:group_concat( [distinct] 要連接的字段 [order by 排序字段 asc/desc ] [separator] )

說明:通過使用distinct可以排除重復值;如果希望對結果中的值進行排序,可以使用order by子句;separator分隔符是一個字符串值,缺省為一個逗號。

3、舉例:select name,group_concat(id order by id desc separator '#') as 別名 from 表名 group by name;

四、concat_ws()和group_concat()聯合使用

題目:查詢以name分組的所有組的id和score

舉例:select name,group_concat(concat_ws('-',id,score) order by id) as 別名 from 表名 group by name;

到此這篇關于mysql 模糊查詢 concat()的文章就介紹到這了,更多相關mysql 模糊查詢 concat()內容請搜索以前的文章或繼續瀏覽下面的相關文章希望大家以后多多支持!

標簽: MySQL
主站蜘蛛池模板: 遂宁市| 昌图县| 肥城市| 巴林右旗| 赣州市| 昌黎县| 黄梅县| 永吉县| 磐安县| 武川县| 游戏| 天气| 青田县| 陇西县| 西贡区| 宁乡县| 伊金霍洛旗| 大英县| 新民市| 利川市| 增城市| 宁安市| 岐山县| 三穗县| 海伦市| 侯马市| 聂拉木县| 邢台县| 白朗县| 平利县| 泸州市| 德保县| 高密市| 韩城市| 开原市| 天柱县| 贵南县| 黎平县| 镇原县| 义乌市| 双牌县|