Skip to content

Instantly share code, notes, and snippets.

@jak
Created January 28, 2010 14:24
Show Gist options
  • Save jak/288785 to your computer and use it in GitHub Desktop.
Save jak/288785 to your computer and use it in GitHub Desktop.
CREATE OR REPLACE function join ( p_cursor sys_refcursor, p_del varchar2 := '; ' )
return varchar2 is l_value varchar2(32767);
l_result varchar2(32767);
begin loop fetch p_cursor into l_value;
exit when p_cursor%notfound;
if l_result is not null then
l_result := l_result || p_del;
end if;
l_result := l_result || l_value;
end loop;
close p_cursor;
return l_result;
end join;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment