1、wmsys.wm_concat(字段名)
select wmsys.wm_concat(customer_name)
from A
where application_no='BF-A170418000'
注意:
A——字段名 必须是 字符类型,如果不是,需要用to_char转换
例如:
select wmsys.wm_concat(to_char((customer_name)))
from A
where application_no='BF-A170418000'
B——如果想其它分隔符分割,可用replace
例如:
se