Hello,
I have a table A which contains a field with those text values
option1,option2,option3 etc...
All those options are created from another table B options. They are inserted when someone selects one or more FROM B to A.
Problem is from time to time the original name, example option2 could be changed to mynewoption in master table B
How can I use FIND_IN_SET to locate oldname (option2) and replace it with mynewoption in table A? Or what is the better way to do it?
I usually use ID but in that case I must use text, and updating a name causes havoc.
Thank you.