One of the column in my table have data like this
@Stream<TTL>@Topic<Abstimmung_Carbon_Accounting>@Date<03-May-2012<@Time<BN,APH>@Participants<MUELLER,RECHTE>@Pages<2>
@Stream<m20>@Topic<Shared_Space_Afternoon>@Date<12.10.12>@Time<Call>@Participants<dehaan>@Pages<2>
What I want is to select the Topic part only, using mysql query. Regex for this is something like Topic\<\w+\>
But how to use it to select part from a field in mysql.
Output needed:
Abstimmung_Carbon_Accounting
Shared_Space_Afternoon
Thanks for your help.