I have a situation where I need to extract information from a sql table row.
A typical string looks like,
RMR*AZ*10001312**119.76
where RMR is the key to identify the row. I need to extract information between second and third *, i.e. 10001312 and after fourth one i.e. is 119.76
This information will be populated in a table.
How could I achieve this?
An example done in SQL server, which may help you.