I Have a question on formatting data in MYSQL.
This is how my table looks like
Table Movie
ID Movie Cast
1 Movie1 Actor1(Role1), Actor2(Role2), Actor3(Role3)
2 Movie2 Actor2(Role4), Actor3(Role1)
3 Movie3 Actor3(Role7), Actor5(Role9), Actor2(Role4)
I understand having multiple values in a field is bad database design and I am working on separating the values as well.
Can anyone helped me on removing the (Roles) from the column Cast? Is there anyway to check "(" and ")" and remove all characters in between the brackets?
Thanks for any help!