Return multi occurence of a search string value within a column
I'm looking for help on how to return multi occurences of a search string value within column:
example:
col1
-----
<abdcduet>ihgtf<qccbbk>wwuwy<qquptio>
select substr(col1,instr(col1,'<')),(instr(col1,'>'))) col1 from tabl1
results :
col1
-----
bdcduet
However, I will like to return all the search occurrences in col1.
Message was edited by:
user524911