Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> Re: Group functions
I should clarify what I meant:
I want to write my own group function in pl/sql.
Specifcally I wan to write a group concatenation function that will take the
values in a query and concatenate them. The SQL would be something like:
select column1,CONCAT_GROUP(column2)
from ......
group by column1;
PL/SQL:
function CONCAT_GROUP IS
BEGIN
![]() |
![]() |