I have one clob field 'Class_Data' in my table 'School' and in the clob there is one tag name as '<Fee-Value>' , I want to select the all occurrences of the tag from the clob data. I used the below query in mysql , but it select only the first occurrence of the tag(there are 12 occurrence of the vallue)
Code:
select substr(Class_Data, instr(Class_Data,'Fee-Value'),30) from School where class='S013' and grade='A' and date ='20130301';
Comment