I have a table of values, one of the columns being of type SET .
If there are currently members ('a', 'b', 'c', 'd'), how to add 'e' to the possible values?
I understand that using the SET type is a bit strange, and I donβt understand why it should be used instead of a foreign key in another table with the values ββof the set, but I did not design the corresponding database, and cannot change it so much.
Thank you for your help!
UPDATE: I want to update the SET type for all rows, not just one if that helps.
database mysql database-design
Riddari
source share