Home:ALL Converter>Split list of values for select list in Oracle Apex

Split list of values for select list in Oracle Apex

Ask Time:2014-02-20T14:38:16         Author:Jose Valverde

Json Formatter

im working on Oracle Apex and im trying to load the result of a list of values into a select list, which is a combobox at the end. My code is the following.

select
field1 || ',' || field2 || ',' || field3 as dv, id rv 
from table
where id=1
order by 1

This code worked, but not as i need.I need to print the past 3 results in 3 different spaces and NOT with commas in only one line. How could i split that and print them in different lines but in the same select list(combobox) with Oracle Apex.

Hope you can help me. Thank you.

Author:Jose Valverde,eproduced under the CC 4.0 BY-SA copyright license with a link to the original source and this disclaimer.
Link to original article:https://stackoverflow.com/questions/21900123/split-list-of-values-for-select-list-in-oracle-apex
yy