I have a few lines in my table. This lines looks like:
Atribute |
---------------|
B=10;MB=12;A=33|
---------------|
MB=16;B=12;A=23|
---------------|
A=10;MB=23;B=58|
and etc.
I need to get numbers only after 'B='. For that example i should get:
10
12
58
What the select query should i write for get this result? (Query should not confuse with 'MB=' and 'B=')