【发布时间】:2010-11-07 17:47:44
【问题描述】:
如何在不创建存储过程的情况下在 oracle 中实现以下功能?
数据集:
question_id element_id
1 7
1 8
2 9
3 10
3 11
3 12
期望的结果:
question_id element_id
1 7,8
2 9
3 10,11,12
【问题讨论】:
标签: sql oracle concatenation string-aggregation