欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

oracle将查询结果拼装成字符串 博客分类: oracle  

程序员文章站 2024-03-22 16:44:11
...

11g里面用listagg,10g里面用wm_concat
select listagg(name,',') within (order by id) from table

select wm_concat(name) from table