mysql拼接多字段作为查询条件(Mysql 实现字段拼接的三个函数)
类别:数据库 浏览量:2736
时间:2022-03-29 03:38:36 mysql拼接多字段作为查询条件
Mysql 实现字段拼接的三个函数给运营导出数据时,难免需要对字段进行拼接,如果 Mysql 可以完成的话,就可以少些很多代码。
- concat()
- concat_ws()
- group_concat()
Mysql 确实有几个函数可以对字段进行拼接。
concat()
将多个字段使用空字符串拼接为一个字段
|
mysql> select concat(id, type) from mm_content limit 10; + ------------------+ | concat(id, type) | + ------------------+ | 100818image | | 100824image | | 100825video | | 100826video | | 100827video | | 100828video | | 100829video | | 100830video | | 100831video | | 100832video | + ------------------+ 10 rows in set (0.00 sec) |
不过如果有字段值为 NULL,则结果为 NULL。
|
mysql> select concat(id, type, tags) from mm_content limit 10; + ------------------------+ | concat(id, type, tags) | + ------------------------+ | NULL | | NULL | | NULL | | NULL | | NULL | | NULL | | NULL | | NULL | | NULL | | NULL | + ------------------------+ 10 rows in set (0.00 sec) |
concat_ws()
上面这种方式如果想要使用分隔符分割,就需要每个字段中间插一个字符串,非常麻烦。
concat_ws()
可以一次性的解决分隔符的问题,并且不会因为某个值为 NUll,而全部为 NUll。
|
mysql> select concat_ws( ' ' , id, type, tags) from mm_content limit 10; + --------------------------------+ | concat_ws( ' ' , id, type, tags) | + --------------------------------+ | 100818 image | | 100824 image | | 100825 video | | 100826 video | | 100827 video | | 100828 video | | 100829 video | | 100830 video | | 100831 video | | 100832 video | + --------------------------------+ 10 rows in set (0.00 sec) |
group_concat()
最后一个厉害了,正常情况下一个语句写成这样一定会报错的。
|
mysql> select id from test_user group by age; ERROR 1055 (42000): Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'test_user.id' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by |
但是 group_concat()
可以将分组状态下的其他字段拼接成字符串查询出来
|
mysql> select group_concat( name ) from test_user group by age; + --------------------+ | group_concat( name ) | + --------------------+ | wen,ning | | wxnacy,win | + --------------------+ 2 rows in set (0.00 sec) |
默认使用逗号分隔,我们也可以指定分隔符
|
mysql> select group_concat( name separator ' ' ) from test_user group by age; + ----------------------------------+ | group_concat( name separator ' ' ) | + ----------------------------------+ | wen ning | | wxnacy win | + ----------------------------------+ 2 rows in set (0.00 sec) |
将字符串按照某个顺序排列
|
mysql> select group_concat( name order by id desc separator ' ' ) from test_user group by age; + ---------------------------------------------------+ | group_concat( name order by id desc separator ' ' ) | + ---------------------------------------------------+ | ning wen | | win wxnacy | + ---------------------------------------------------+ 2 rows in set (0.00 sec) |
如果想要拼接多个字段,默认是用空字符串进行拼接的,我们可以利用 concat_ws()
方法嵌套一层
|
mysql> select group_concat(concat_ws( ',' , id, name ) separator ' ' ) from test_user group by age; + ------------------------------------------------------+ | group_concat(concat_ws( ',' , id, name ) separator ' ' ) | + ------------------------------------------------------+ | 1,wen 2,ning | | 3,wxnacy 4,win | + ------------------------------------------------------+ 2 rows in set (0.00 sec) |
以上就是Mysql 实现字段拼接的三个函数的详细内容,更多关于MySQL 字符串拼接的资料请关注开心学习网其它相关文章!
原文链接:https://wxnacy.com/2020/07/30/mysql-concat/
您可能感兴趣
- mysql更新数据库表中的数据语法(Mysql联表update数据的示例详解)
- mysql定时任务
- mysqllinux解压版安装教程学习(解决Linux安装mysql 在/etc下没有my.cnf的问题)
- mysql索引的类型和方法(MySQL覆盖索引的使用示例)
- mysql和explain哪个好(MySQL EXPLAIN输出列的详细解释)
- mysql常见的存储引擎(如何选择MySQL的存储引擎?)
- mysql 内置函数
- mysql 存储引擎有哪些(MySQL 常见存储引擎的优劣)
- mysql删除数据库的命令(MySQL 线上数据库清理数据的方法)
- mysql行级锁使用教程(浅析MySQL的lru链表)
- mysql子查询用法(MySQL 子查询和分组查询)
- mysql中命令大全(MySQL中ESCAPE关键字的用法详解)
- 查询mysql 死锁(MySQL线上死锁分析实战)
- mysql字符串的表示方法(详解mysql中的字符集和校验规则)
- mysql 高效分页(MySQL 分页查询的优化技巧)
- mysqlupdate语句用法(MySQL update set 和 and的区别)
- 郭麒麟(郭麒麟)
- 古人十句 戒骄 名言,醍醐灌顶,受益匪浅(古人十句戒骄名言)
- 《道德经》:功成不局,泰而不骄(道德经:功成不局)
- 每日一典 过江之鲫(每日一典过江之鲫)
- 红色代表什么(红色代表什么意义和象征)
- 菲律宾安全吗(菲律宾安全吗2023)
热门推荐
- numpy如何创建数组(NumPy 数组使用大全)
- 云服务器是什么到底有什么用(云服务器有什么用)
- dede图片上传问题(DEDE图片集上传图片时出错显示FILEID的解决方法)
- python的三维画图(python处理DICOM并计算三维模型体积)
- js如何生成随机数
- scrapy爬虫原理(浅谈Scrapy网络爬虫框架的工作原理和数据采集)
- python numpy 安装(python3.6下Numpy库下载与安装图文教程)
- docker安装镜像失败(阿里云镜像安装docker报错的问题及解决方案)
- html5新增全局属性(HTML5自定义属性的问题分析)
- docker给镜像加名称(Alpine Docker镜像字体的问题解决操作)