I want to call oracle function
select field2,
listagg(field, ', ') within group (order by field1) as smpl_func
from table
group by field2
with another name and the substituted parameters, how in this example:
select field2,
smpl_func(field1)
from table
group by field2
maybe synonym or call from function?