1.Oracle 中将查问出的多条记录的某个字段拼接成一个字符串的办法
11g 外面用 listagg:(19c 也可用)
select listagg(name,',') within (order by id) from table
10g 外面用 wm_concat:select wm_concat(name) from table
wm_concat 是 undocument 的
listagg 是 11g document 的
11g 外面用 listagg:(19c 也可用)
select listagg(name,',') within (order by id) from table
10g 外面用 wm_concat:select wm_concat(name) from table
wm_concat 是 undocument 的
listagg 是 11g document 的