Hi,
I would need to create a 'list of values' for 'select list' based on PL/SQL
but I don't quite get how should I write the 'PL/SQL Function Body returning SQL Query' ?
for example sql query
select ename as d,
empno as r
from emp
should be rewritten as something like
declare [variable]
select into [variable]
return [variable]
?