I am able to extract substrings from a table where text follows a specific character e.g. "*":
Select substring(FieldX,(Locate('*',FieklX)), 10) from Tqble where Fieldx like '%*%
'
This will give me the first match from each record in the table where "*" is found. However I want ALL matches in each record where a * is found. Is there a way to specify this?