数据库
首页 > 数据库> > Oracle 一列数据转为一行字符串 函数

Oracle 一列数据转为一行字符串 函数

作者:互联网

将查出的一列值使用分隔符隔开,成为一条数据!(一般搭配group by使用)

wm_concat()函数

foods表结构

idnametype
1苹果1
2馒头2
3橘子1
4大虾3
5面包2

SQL语句

-- 默认逗号分隔
SELECT
	wm_concat("foods"."name") as result
FROM
	"foods" 
GROUP BY "foods"."type"

结果

在这里插入图片描述

自定义分隔符

-- replace()函数  替换逗号使用分号作为分隔符
SELECT
	replace(wm_concat("foods"."name"),',',';') as result
FROM
	"foods" 
GROUP BY "foods"."type"

结果

在这里插入图片描述

标签:GROUP,wm,replace,字符串,foods,一列,分隔符,Oracle,concat
来源: https://blog.csdn.net/qq_47100953/article/details/120762556